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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 if (is_clang) { | 884 if (is_clang) { |
885 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). | 885 # Suppress warnings from the Chromium Clang plugins (bugs.webrtc.org/163). |
886 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 886 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
887 } | 887 } |
888 } | 888 } |
889 | 889 |
890 if (rtc_include_tests) { | 890 if (rtc_include_tests) { |
891 rtc_source_set("acm_receive_test") { | 891 rtc_source_set("acm_receive_test") { |
892 testonly = true | 892 testonly = true |
893 sources = [ | 893 sources = [ |
894 "acm2/acm_receive_test_oldapi.cc", | 894 "acm2/acm_receive_test.cc", |
895 "acm2/acm_receive_test_oldapi.h", | 895 "acm2/acm_receive_test.h", |
896 ] | 896 ] |
897 | 897 |
898 defines = audio_coding_defines | 898 defines = audio_coding_defines |
899 | 899 |
900 deps = audio_coding_deps + [ | 900 deps = audio_coding_deps + [ |
901 ":audio_coding", | 901 ":audio_coding", |
902 ":neteq_unittest_tools", | 902 ":neteq_unittest_tools", |
903 "//testing/gtest", | 903 "//testing/gtest", |
904 ] | 904 ] |
905 } | 905 } |
906 | 906 |
907 rtc_source_set("acm_send_test") { | 907 rtc_source_set("acm_send_test") { |
908 testonly = true | 908 testonly = true |
909 sources = [ | 909 sources = [ |
910 "acm2/acm_send_test_oldapi.cc", | 910 "acm2/acm_send_test.cc", |
911 "acm2/acm_send_test_oldapi.h", | 911 "acm2/acm_send_test.h", |
912 ] | 912 ] |
913 | 913 |
914 defines = audio_coding_defines | 914 defines = audio_coding_defines |
915 | 915 |
916 deps = audio_coding_deps + [ | 916 deps = audio_coding_deps + [ |
917 ":audio_coding", | 917 ":audio_coding", |
918 ":neteq_unittest_tools", | 918 ":neteq_unittest_tools", |
919 "//testing/gtest", | 919 "//testing/gtest", |
920 ] | 920 ] |
921 } | 921 } |
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1615 "//testing/gtest", | 1615 "//testing/gtest", |
1616 ] | 1616 ] |
1617 | 1617 |
1618 if (is_clang) { | 1618 if (is_clang) { |
1619 # Suppress warnings from Chrome's Clang plugins. | 1619 # Suppress warnings from Chrome's Clang plugins. |
1620 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1620 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
1621 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1621 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1622 } | 1622 } |
1623 } | 1623 } |
1624 } | 1624 } |
OLD | NEW |