| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
| (...skipping 1539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1550 ] | 1550 ] |
| 1551 | 1551 |
| 1552 include_dirs = [ | 1552 include_dirs = [ |
| 1553 "codecs/isac/main/include", | 1553 "codecs/isac/main/include", |
| 1554 "codecs/isac/main/test", | 1554 "codecs/isac/main/test", |
| 1555 "codecs/isac/main/util", | 1555 "codecs/isac/main/util", |
| 1556 ] | 1556 ] |
| 1557 | 1557 |
| 1558 deps = [ | 1558 deps = [ |
| 1559 ":isac", | 1559 ":isac", |
| 1560 "../../base:rtc_base", | 1560 "../../base:rtc_base_approved", |
| 1561 "//build/config/sanitizers:deps", | 1561 "//build/config/sanitizers:deps", |
| 1562 ] | 1562 ] |
| 1563 | 1563 |
| 1564 if (is_win && is_clang) { | 1564 if (is_win && is_clang) { |
| 1565 cflags = [ | 1565 cflags = [ |
| 1566 # Disable warnings failing when compiling with Clang on Windows. | 1566 # Disable warnings failing when compiling with Clang on Windows. |
| 1567 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 | 1567 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 |
| 1568 "-Wno-format", | 1568 "-Wno-format", |
| 1569 ] | 1569 ] |
| 1570 } | 1570 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1603 | 1603 |
| 1604 executable("webrtc_opus_fec_test") { | 1604 executable("webrtc_opus_fec_test") { |
| 1605 testonly = true | 1605 testonly = true |
| 1606 | 1606 |
| 1607 sources = [ | 1607 sources = [ |
| 1608 "codecs/opus/opus_fec_test.cc", | 1608 "codecs/opus/opus_fec_test.cc", |
| 1609 ] | 1609 ] |
| 1610 | 1610 |
| 1611 deps = [ | 1611 deps = [ |
| 1612 ":webrtc_opus", | 1612 ":webrtc_opus", |
| 1613 "../../base:rtc_base", | 1613 "../../base:rtc_base_approved", |
| 1614 "../../common_audio", | 1614 "../../common_audio", |
| 1615 "../../test:test_support", | 1615 "../../test:test_support", |
| 1616 "../../test:test_support_main", | 1616 "../../test:test_support_main", |
| 1617 "//build/config/sanitizers:deps", | 1617 "//build/config/sanitizers:deps", |
| 1618 "//testing/gtest", | 1618 "//testing/gtest", |
| 1619 ] | 1619 ] |
| 1620 | 1620 |
| 1621 if (is_clang) { | 1621 if (is_clang) { |
| 1622 # Suppress warnings from Chrome's Clang plugins. | 1622 # Suppress warnings from Chrome's Clang plugins. |
| 1623 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1623 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 1624 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1624 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 1625 } | 1625 } |
| 1626 } | 1626 } |
| 1627 } | 1627 } |
| OLD | NEW |