Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 1436553004: Created a test that reports the statistics for the duration of APM stream processing API calls. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Renamed test file and moved to new build target Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/modules/audio_processing/audio_processing_performance_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/audio_processing_performance_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698