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("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 | 212 |
213 deps = [ | 213 deps = [ |
214 "../modules/audio_processing", | 214 "../modules/audio_processing", |
215 "../system_wrappers:metrics_default", | 215 "../system_wrappers:metrics_default", |
216 "//build/win:default_exe_manifest", | 216 "//build/win:default_exe_manifest", |
217 "//testing/gtest", | 217 "//testing/gtest", |
218 "//third_party/gflags", | 218 "//third_party/gflags", |
219 ] | 219 ] |
220 } | 220 } |
221 | 221 |
222 rtc_executable("audio_e2e_harness") { | |
223 testonly = true | |
224 sources = [ | |
225 "e2e_quality/audio/audio_e2e_harness.cc", | |
226 ] | |
227 | |
228 if (is_clang) { | |
229 # Suppress warnings from the Chromium Clang plugin. | |
230 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
231 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | |
232 } | |
233 | |
234 deps = [ | |
235 "../system_wrappers:system_wrappers_default", | |
236 "../test:channel_transport", | |
237 "../voice_engine", | |
238 "//build/win:default_exe_manifest", | |
239 "//testing/gtest", | |
240 "//third_party/gflags", | |
241 ] | |
242 } | |
243 | |
244 if (is_android || is_ios) { | 222 if (is_android || is_ios) { |
245 tools_unittests_resources = [ "//resources/foreman_cif.yuv" ] | 223 tools_unittests_resources = [ "//resources/foreman_cif.yuv" ] |
246 } | 224 } |
247 | 225 |
248 if (is_ios) { | 226 if (is_ios) { |
249 bundle_data("tools_unittests_bundle_data") { | 227 bundle_data("tools_unittests_bundle_data") { |
250 testonly = true | 228 testonly = true |
251 sources = tools_unittests_resources | 229 sources = tools_unittests_resources |
252 outputs = [ | 230 outputs = [ |
253 "{{bundle_resources_dir}}/{{source_file_part}}", | 231 "{{bundle_resources_dir}}/{{source_file_part}}", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 ] | 279 ] |
302 outputs = [ | 280 outputs = [ |
303 "$root_build_dir/{{source_file_part}}", | 281 "$root_build_dir/{{source_file_part}}", |
304 ] | 282 ] |
305 deps = [ | 283 deps = [ |
306 "..:rtc_event_log_proto", | 284 "..:rtc_event_log_proto", |
307 ] | 285 ] |
308 } | 286 } |
309 } | 287 } |
310 } | 288 } |
OLD | NEW |