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 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 ":neteq_speed_test", | 1129 ":neteq_speed_test", |
1130 ":rtp_analyze", | 1130 ":rtp_analyze", |
1131 ":rtpcat", | 1131 ":rtpcat", |
1132 ":webrtc_opus_fec_test", | 1132 ":webrtc_opus_fec_test", |
1133 ] | 1133 ] |
1134 if (rtc_enable_protobuf) { | 1134 if (rtc_enable_protobuf) { |
1135 public_deps += [ ":neteq_rtpplay" ] | 1135 public_deps += [ ":neteq_rtpplay" ] |
1136 } | 1136 } |
1137 } | 1137 } |
1138 | 1138 |
| 1139 rtc_source_set("audio_coding_perf_tests") { |
| 1140 testonly = true |
| 1141 sources = [ |
| 1142 "codecs/opus/opus_complexity_unittest.cc", |
| 1143 "neteq/test/neteq_performance_unittest.cc", |
| 1144 ] |
| 1145 deps = [ |
| 1146 ":neteq_test_support", |
| 1147 ] |
| 1148 if (!build_with_chromium && is_clang) { |
| 1149 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 1150 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1151 } |
| 1152 } |
| 1153 |
1139 rtc_source_set("acm_receive_test") { | 1154 rtc_source_set("acm_receive_test") { |
1140 testonly = true | 1155 testonly = true |
1141 sources = [ | 1156 sources = [ |
1142 "acm2/acm_receive_test.cc", | 1157 "acm2/acm_receive_test.cc", |
1143 "acm2/acm_receive_test.h", | 1158 "acm2/acm_receive_test.h", |
1144 ] | 1159 ] |
1145 | 1160 |
1146 defines = audio_coding_defines | 1161 defines = audio_coding_defines |
1147 | 1162 |
1148 deps = audio_coding_deps + [ | 1163 deps = audio_coding_deps + [ |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1915 "../../test:test_main", | 1930 "../../test:test_main", |
1916 "//testing/gtest", | 1931 "//testing/gtest", |
1917 ] | 1932 ] |
1918 | 1933 |
1919 if (!build_with_chromium && is_clang) { | 1934 if (!build_with_chromium && is_clang) { |
1920 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1935 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
1921 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1936 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1922 } | 1937 } |
1923 } | 1938 } |
1924 } | 1939 } |
OLD | NEW |