OLD | NEW |
---|---|
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
279 'base/macsocketserver_unittest.cc', | 279 'base/macsocketserver_unittest.cc', |
280 ], | 280 ], |
281 }], | 281 }], |
282 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 282 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
283 'defines': [ | 283 'defines': [ |
284 'CARBON_DEPRECATED=YES', | 284 'CARBON_DEPRECATED=YES', |
285 ], | 285 ], |
286 }], | 286 }], |
287 ], | 287 ], |
288 }, | 288 }, |
289 { | |
290 'target_name': 'audio_processing_performance_tests', | |
hlundin-webrtc
2015/11/18 15:05:31
I think you should add this to webrtc_perf_tests a
peah-webrtc
2015/11/18 15:56:48
Done.
| |
291 'type': '<(gtest_target_type)', | |
292 'sources': [ | |
293 'modules/audio_processing/audio_processing_performance_unittest.cc', | |
294 ], | |
295 'dependencies': [ | |
296 '<(DEPTH)/testing/gtest.gyp:gtest', | |
297 '<(webrtc_root)/modules/modules.gyp:audio_processing', | |
298 '<(webrtc_root)/modules/modules.gyp:audioproc_test_utils', | |
299 'test/test.gyp:test_main', | |
300 'test/webrtc_test_common.gyp:webrtc_test_common', | |
301 ], | |
302 'conditions': [ | |
303 ['OS=="android"', { | |
304 'dependencies': [ | |
305 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | |
306 ], | |
307 }], | |
308 ], | |
309 }, | |
289 ], | 310 ], |
290 'conditions': [ | 311 'conditions': [ |
291 ['OS=="android"', { | 312 ['OS=="android"', { |
292 'targets': [ | 313 'targets': [ |
293 { | 314 { |
294 'target_name': 'rtc_unittests_apk_target', | 315 'target_name': 'rtc_unittests_apk_target', |
295 'type': 'none', | 316 'type': 'none', |
296 'dependencies': [ | 317 'dependencies': [ |
297 '<(apk_tests_path):rtc_unittests_apk', | 318 '<(apk_tests_path):rtc_unittests_apk', |
298 ], | 319 ], |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
371 'build/isolate.gypi', | 392 'build/isolate.gypi', |
372 ], | 393 ], |
373 'sources': [ | 394 'sources': [ |
374 'webrtc_perf_tests.isolate', | 395 'webrtc_perf_tests.isolate', |
375 ], | 396 ], |
376 }, | 397 }, |
377 ], | 398 ], |
378 }], | 399 }], |
379 ], | 400 ], |
380 } | 401 } |
OLD | NEW |