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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 2336123002: Revert of Moved webrtc/test/channel_transport/ into webrtc/voice_engine/test/ (Closed)
Patch Set: Created 4 years, 3 months 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/voice_engine/voice_engine.gyp ('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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 'video/vie_encoder_unittest.cc', 378 'video/vie_encoder_unittest.cc',
379 'video/vie_remb_unittest.cc', 379 'video/vie_remb_unittest.cc',
380 ], 380 ],
381 'dependencies': [ 381 'dependencies': [
382 '<(DEPTH)/testing/gmock.gyp:gmock', 382 '<(DEPTH)/testing/gmock.gyp:gmock',
383 '<(DEPTH)/testing/gtest.gyp:gtest', 383 '<(DEPTH)/testing/gtest.gyp:gtest',
384 '<(webrtc_root)/api/api.gyp:call_api', 384 '<(webrtc_root)/api/api.gyp:call_api',
385 '<(webrtc_root)/common.gyp:webrtc_common', 385 '<(webrtc_root)/common.gyp:webrtc_common',
386 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', 386 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
387 '<(webrtc_root)/modules/modules.gyp:video_capture', 387 '<(webrtc_root)/modules/modules.gyp:video_capture',
388 '<(webrtc_root)/test/test.gyp:channel_transport',
388 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 389 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
389 'test/test.gyp:test_common', 390 'test/test.gyp:test_common',
390 'test/test.gyp:test_main', 391 'test/test.gyp:test_main',
391 'test/test.gyp:test_support', 392 'test/test.gyp:test_support',
392 'webrtc', 393 'webrtc',
393 ], 394 ],
394 'conditions': [ 395 'conditions': [
395 ['rtc_use_h264==1', { 396 ['rtc_use_h264==1', {
396 'defines': [ 397 'defines': [
397 'WEBRTC_END_TO_END_H264_TESTS', 398 'WEBRTC_END_TO_END_H264_TESTS',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 'modules/audio_processing/level_controller/level_controller_complexity_u nittest.cc', 437 'modules/audio_processing/level_controller/level_controller_complexity_u nittest.cc',
437 'modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc', 438 'modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc',
438 'video/full_stack.cc', 439 'video/full_stack.cc',
439 ], 440 ],
440 'dependencies': [ 441 'dependencies': [
441 '<(DEPTH)/testing/gmock.gyp:gmock', 442 '<(DEPTH)/testing/gmock.gyp:gmock',
442 '<(DEPTH)/testing/gtest.gyp:gtest', 443 '<(DEPTH)/testing/gtest.gyp:gtest',
443 '<(webrtc_root)/modules/modules.gyp:audio_processing', 444 '<(webrtc_root)/modules/modules.gyp:audio_processing',
444 '<(webrtc_root)/modules/modules.gyp:audioproc_test_utils', 445 '<(webrtc_root)/modules/modules.gyp:audioproc_test_utils',
445 '<(webrtc_root)/modules/modules.gyp:video_capture', 446 '<(webrtc_root)/modules/modules.gyp:video_capture',
447 '<(webrtc_root)/test/test.gyp:channel_transport',
446 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 448 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
447 'video_quality_test', 449 'video_quality_test',
448 'modules/modules.gyp:neteq_test_support', 450 'modules/modules.gyp:neteq_test_support',
449 'modules/modules.gyp:bwe_simulator', 451 'modules/modules.gyp:bwe_simulator',
450 'modules/modules.gyp:rtp_rtcp', 452 'modules/modules.gyp:rtp_rtcp',
451 'test/test.gyp:test_common', 453 'test/test.gyp:test_common',
452 'test/test.gyp:test_main', 454 'test/test.gyp:test_main',
453 'test/test.gyp:test_renderer', 455 'test/test.gyp:test_renderer',
454 'webrtc', 456 'webrtc',
455 ], 457 ],
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 'build/isolate.gypi', 652 'build/isolate.gypi',
651 ], 653 ],
652 'sources': [ 654 'sources': [
653 'webrtc_perf_tests.isolate', 655 'webrtc_perf_tests.isolate',
654 ], 656 ],
655 }, 657 },
656 ], 658 ],
657 }], 659 }],
658 ], 660 ],
659 } 661 }
OLDNEW
« no previous file with comments | « webrtc/voice_engine/voice_engine.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698