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

Side by Side Diff: webrtc/webrtc_tests.gypi

Issue 2267113002: GN: Fix test_support_unittests and MIPS compile issue. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Move all metrics/ sources and remove metrics.gyp Created 4 years, 4 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
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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 'type': '<(gtest_target_type)', 359 'type': '<(gtest_target_type)',
360 'sources': [ 360 'sources': [
361 'audio/audio_receive_stream_unittest.cc', 361 'audio/audio_receive_stream_unittest.cc',
362 'audio/audio_send_stream_unittest.cc', 362 'audio/audio_send_stream_unittest.cc',
363 'audio/audio_state_unittest.cc', 363 'audio/audio_state_unittest.cc',
364 'call/bitrate_allocator_unittest.cc', 364 'call/bitrate_allocator_unittest.cc',
365 'call/bitrate_estimator_tests.cc', 365 'call/bitrate_estimator_tests.cc',
366 'call/call_unittest.cc', 366 'call/call_unittest.cc',
367 'call/packet_injection_tests.cc', 367 'call/packet_injection_tests.cc',
368 'call/ringbuffer_unittest.cc', 368 'call/ringbuffer_unittest.cc',
369 'test/common_unittest.cc',
370 'test/testsupport/metrics/video_metrics_unittest.cc',
371 'video/call_stats_unittest.cc', 369 'video/call_stats_unittest.cc',
372 'video/encoder_state_feedback_unittest.cc', 370 'video/encoder_state_feedback_unittest.cc',
373 'video/end_to_end_tests.cc', 371 'video/end_to_end_tests.cc',
374 'video/overuse_frame_detector_unittest.cc', 372 'video/overuse_frame_detector_unittest.cc',
375 'video/payload_router_unittest.cc', 373 'video/payload_router_unittest.cc',
376 'video/report_block_stats_unittest.cc', 374 'video/report_block_stats_unittest.cc',
377 'video/send_delay_stats_unittest.cc', 375 'video/send_delay_stats_unittest.cc',
378 'video/send_statistics_proxy_unittest.cc', 376 'video/send_statistics_proxy_unittest.cc',
379 'video/stats_counter_unittest.cc', 377 'video/stats_counter_unittest.cc',
380 'video/stream_synchronization_unittest.cc', 378 'video/stream_synchronization_unittest.cc',
381 'video/video_capture_input_unittest.cc', 379 'video/video_capture_input_unittest.cc',
382 'video/video_decoder_unittest.cc', 380 'video/video_decoder_unittest.cc',
383 'video/video_encoder_unittest.cc', 381 'video/video_encoder_unittest.cc',
384 'video/video_send_stream_tests.cc', 382 'video/video_send_stream_tests.cc',
385 'video/vie_remb_unittest.cc', 383 'video/vie_remb_unittest.cc',
386 ], 384 ],
387 'dependencies': [ 385 'dependencies': [
388 '<(DEPTH)/testing/gmock.gyp:gmock', 386 '<(DEPTH)/testing/gmock.gyp:gmock',
389 '<(DEPTH)/testing/gtest.gyp:gtest', 387 '<(DEPTH)/testing/gtest.gyp:gtest',
390 '<(webrtc_root)/common.gyp:webrtc_common', 388 '<(webrtc_root)/common.gyp:webrtc_common',
391 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', 389 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp',
392 '<(webrtc_root)/modules/modules.gyp:video_capture', 390 '<(webrtc_root)/modules/modules.gyp:video_capture',
393 '<(webrtc_root)/test/test.gyp:channel_transport', 391 '<(webrtc_root)/test/test.gyp:channel_transport',
394 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', 392 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine',
395 'test/metrics.gyp:metrics',
396 'test/test.gyp:test_common', 393 'test/test.gyp:test_common',
397 'test/test.gyp:test_main', 394 'test/test.gyp:test_main',
395 'test/test.gyp:test_support',
398 'webrtc', 396 'webrtc',
399 ], 397 ],
400 'conditions': [ 398 'conditions': [
401 ['rtc_use_h264==1', { 399 ['rtc_use_h264==1', {
402 'defines': [ 400 'defines': [
403 'WEBRTC_END_TO_END_H264_TESTS', 401 'WEBRTC_END_TO_END_H264_TESTS',
404 ], 402 ],
405 }], 403 }],
406 ['OS=="android"', { 404 ['OS=="android"', {
407 'dependencies': [ 405 'dependencies': [
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 'build/isolate.gypi', 660 'build/isolate.gypi',
663 ], 661 ],
664 'sources': [ 662 'sources': [
665 'webrtc_perf_tests.isolate', 663 'webrtc_perf_tests.isolate',
666 ], 664 ],
667 }, 665 },
668 ], 666 ],
669 }], 667 }],
670 ], 668 ],
671 } 669 }
OLDNEW
« webrtc/test/metrics.gyp ('K') | « webrtc/test/test_support_unittests.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698