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