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 1560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1571 | 1571 |
1572 sources = [ | 1572 sources = [ |
1573 "codecs/g711/test/testG711.cc", | 1573 "codecs/g711/test/testG711.cc", |
1574 ] | 1574 ] |
1575 | 1575 |
1576 configs += [ "../..:common_config" ] | 1576 configs += [ "../..:common_config" ] |
1577 public_configs = [ "../..:common_inherited_config" ] | 1577 public_configs = [ "../..:common_inherited_config" ] |
1578 | 1578 |
1579 deps = [ | 1579 deps = [ |
1580 ":g711", | 1580 ":g711", |
| 1581 "//build/config/sanitizers:deps", |
1581 ] | 1582 ] |
1582 } | 1583 } |
1583 | 1584 |
1584 executable("g722_test") { | 1585 executable("g722_test") { |
1585 testonly = true | 1586 testonly = true |
1586 | 1587 |
1587 sources = [ | 1588 sources = [ |
1588 "codecs/g722/test/testG722.cc", | 1589 "codecs/g722/test/testG722.cc", |
1589 ] | 1590 ] |
1590 | 1591 |
1591 configs += [ "../..:common_config" ] | 1592 configs += [ "../..:common_config" ] |
1592 public_configs = [ "../..:common_inherited_config" ] | 1593 public_configs = [ "../..:common_inherited_config" ] |
1593 | 1594 |
1594 deps = [ | 1595 deps = [ |
1595 ":g722", | 1596 ":g722", |
1596 "../..:webrtc_common", | 1597 "../..:webrtc_common", |
| 1598 "//build/config/sanitizers:deps", |
1597 ] | 1599 ] |
1598 } | 1600 } |
1599 | 1601 |
1600 executable("webrtc_opus_fec_test") { | 1602 executable("webrtc_opus_fec_test") { |
1601 testonly = true | 1603 testonly = true |
1602 | 1604 |
1603 sources = [ | 1605 sources = [ |
1604 "codecs/opus/opus_fec_test.cc", | 1606 "codecs/opus/opus_fec_test.cc", |
1605 ] | 1607 ] |
1606 | 1608 |
1607 deps = [ | 1609 deps = [ |
1608 ":webrtc_opus", | 1610 ":webrtc_opus", |
1609 "../../base:rtc_base", | 1611 "../../base:rtc_base", |
1610 "../../common_audio", | 1612 "../../common_audio", |
1611 "../../test:test_support", | 1613 "../../test:test_support", |
1612 "../../test:test_support_main", | 1614 "../../test:test_support_main", |
1613 "//build/config/sanitizers:deps", | 1615 "//build/config/sanitizers:deps", |
1614 "//testing/gtest", | 1616 "//testing/gtest", |
1615 ] | 1617 ] |
1616 | 1618 |
1617 if (is_clang) { | 1619 if (is_clang) { |
1618 # Suppress warnings from Chrome's Clang plugins. | 1620 # Suppress warnings from Chrome's Clang plugins. |
1619 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1621 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1620 configs -= [ "//build/config/clang:find_bad_constructs" ] | 1622 configs -= [ "//build/config/clang:find_bad_constructs" ] |
1621 } | 1623 } |
1622 } | 1624 } |
1623 } | 1625 } |
OLD | NEW |