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

Side by Side Diff: webrtc/modules/modules.gyp

Issue 1970343002: Make sure WebRTC works without libvpx VP9 support. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: add test to make sure VP9 support isn't announced Created 4 years, 7 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) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 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 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 }, 56 },
57 'targets': [ 57 'targets': [
58 { 58 {
59 'target_name': 'modules_tests', 59 'target_name': 'modules_tests',
60 'type': '<(gtest_target_type)', 60 'type': '<(gtest_target_type)',
61 'dependencies': [ 61 'dependencies': [
62 '<(DEPTH)/testing/gtest.gyp:gtest', 62 '<(DEPTH)/testing/gtest.gyp:gtest',
63 '<(webrtc_root)/common.gyp:webrtc_common', 63 '<(webrtc_root)/common.gyp:webrtc_common',
64 '<(webrtc_root)/common_video/common_video.gyp:common_video', 64 '<(webrtc_root)/common_video/common_video.gyp:common_video',
65 '<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8', 65 '<(webrtc_root)/modules/video_coding/codecs/vp8/vp8.gyp:webrtc_vp8',
66 '<(webrtc_root)/modules/video_coding/codecs/vp9/vp9.gyp:webrtc_vp9',
kjellander_webrtc 2016/05/13 05:26:15 Shouldn't this also go into the condition?
pbos-webrtc 2016/05/14 00:03:06 No this target doesn't use vp9 at all (modules_uni
67 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' , 66 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers' ,
68 '<(webrtc_root)/test/metrics.gyp:metrics', 67 '<(webrtc_root)/test/metrics.gyp:metrics',
69 '<(webrtc_root)/test/test.gyp:test_support', 68 '<(webrtc_root)/test/test.gyp:test_support',
70 '<(webrtc_root)/test/test.gyp:test_support_main', 69 '<(webrtc_root)/test/test.gyp:test_support_main',
71 'audio_coding_module', 70 'audio_coding_module',
72 'rtp_rtcp', 71 'rtp_rtcp',
73 'video_codecs_test_framework', 72 'video_codecs_test_framework',
74 'webrtc_utility', 73 'webrtc_utility',
75 'webrtc_video_coding', 74 'webrtc_video_coding',
76 ], 75 ],
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 'utility/source/process_thread_impl_unittest.cc', 355 'utility/source/process_thread_impl_unittest.cc',
357 'video_coding/codecs/test/packet_manipulator_unittest.cc', 356 'video_coding/codecs/test/packet_manipulator_unittest.cc',
358 'video_coding/codecs/test/stats_unittest.cc', 357 'video_coding/codecs/test/stats_unittest.cc',
359 'video_coding/codecs/test/videoprocessor_unittest.cc', 358 'video_coding/codecs/test/videoprocessor_unittest.cc',
360 'video_coding/codecs/vp8/default_temporal_layers_unittest.cc', 359 'video_coding/codecs/vp8/default_temporal_layers_unittest.cc',
361 'video_coding/codecs/vp8/reference_picture_selection_unittest.cc', 360 'video_coding/codecs/vp8/reference_picture_selection_unittest.cc',
362 'video_coding/codecs/vp8/screenshare_layers_unittest.cc', 361 'video_coding/codecs/vp8/screenshare_layers_unittest.cc',
363 'video_coding/codecs/vp8/simulcast_encoder_adapter_unittest.cc', 362 'video_coding/codecs/vp8/simulcast_encoder_adapter_unittest.cc',
364 'video_coding/codecs/vp8/simulcast_unittest.cc', 363 'video_coding/codecs/vp8/simulcast_unittest.cc',
365 'video_coding/codecs/vp8/simulcast_unittest.h', 364 'video_coding/codecs/vp8/simulcast_unittest.h',
366 'video_coding/codecs/vp9/screenshare_layers_unittest.cc',
367 'video_coding/include/mock/mock_vcm_callbacks.h', 365 'video_coding/include/mock/mock_vcm_callbacks.h',
368 'video_coding/decoding_state_unittest.cc', 366 'video_coding/decoding_state_unittest.cc',
369 'video_coding/histogram_unittest.cc', 367 'video_coding/histogram_unittest.cc',
370 'video_coding/jitter_buffer_unittest.cc', 368 'video_coding/jitter_buffer_unittest.cc',
371 'video_coding/jitter_estimator_tests.cc', 369 'video_coding/jitter_estimator_tests.cc',
372 'video_coding/media_optimization_unittest.cc', 370 'video_coding/media_optimization_unittest.cc',
373 'video_coding/nack_module_unittest.cc', 371 'video_coding/nack_module_unittest.cc',
374 'video_coding/packet_buffer_unittest.cc', 372 'video_coding/packet_buffer_unittest.cc',
375 'video_coding/percentile_filter_unittest.cc', 373 'video_coding/percentile_filter_unittest.cc',
376 'video_coding/receiver_unittest.cc', 374 'video_coding/receiver_unittest.cc',
377 'video_coding/session_info_unittest.cc', 375 'video_coding/session_info_unittest.cc',
378 'video_coding/sequence_number_util_unittest.cc', 376 'video_coding/sequence_number_util_unittest.cc',
379 'video_coding/timing_unittest.cc', 377 'video_coding/timing_unittest.cc',
380 'video_coding/video_coding_robustness_unittest.cc', 378 'video_coding/video_coding_robustness_unittest.cc',
381 'video_coding/video_receiver_unittest.cc', 379 'video_coding/video_receiver_unittest.cc',
382 'video_coding/video_sender_unittest.cc', 380 'video_coding/video_sender_unittest.cc',
383 'video_coding/test/stream_generator.cc', 381 'video_coding/test/stream_generator.cc',
384 'video_coding/test/stream_generator.h', 382 'video_coding/test/stream_generator.h',
385 'video_coding/utility/frame_dropper_unittest.cc', 383 'video_coding/utility/frame_dropper_unittest.cc',
386 'video_coding/utility/ivf_file_writer_unittest.cc', 384 'video_coding/utility/ivf_file_writer_unittest.cc',
387 'video_coding/utility/quality_scaler_unittest.cc', 385 'video_coding/utility/quality_scaler_unittest.cc',
388 'video_processing/test/denoiser_test.cc', 386 'video_processing/test/denoiser_test.cc',
389 'video_processing/test/video_processing_unittest.cc', 387 'video_processing/test/video_processing_unittest.cc',
390 'video_processing/test/video_processing_unittest.h', 388 'video_processing/test/video_processing_unittest.h',
391 ], 389 ],
392 'conditions': [ 390 'conditions': [
391 ['libvpx_build_vp9==1', {
392 'sources': [
393 'video_coding/codecs/vp9/screenshare_layers_unittest.cc',
394 ],
395 }],
393 ['enable_bwe_test_logging==1', { 396 ['enable_bwe_test_logging==1', {
394 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ], 397 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=1' ],
395 }, { 398 }, {
396 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ], 399 'defines': [ 'BWE_TEST_LOGGING_COMPILE_TIME_ENABLE=0' ],
397 'sources!': [ 400 'sources!': [
398 'remote_bitrate_estimator/test/bwe_test_logging.cc' 401 'remote_bitrate_estimator/test/bwe_test_logging.cc'
399 ], 402 ],
400 }], 403 }],
401 # Run screen/window capturer tests only on platforms where they are 404 # Run screen/window capturer tests only on platforms where they are
402 # supported. 405 # supported.
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
769 'sources': [ 772 'sources': [
770 'modules_unittests.isolate', 773 'modules_unittests.isolate',
771 ], 774 ],
772 }, 775 },
773 ], 776 ],
774 }], 777 }],
775 ], 778 ],
776 }], # include_tests 779 }], # include_tests
777 ], # conditions 780 ], # conditions
778 } 781 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698