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

Side by Side Diff: media/media.gyp

Issue 1313603004: MediaRecorderHandler (video part) and unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved DCHECK_EQ() Created 5 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 | « media/capture/webm_muxer_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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 'capture/video/win/sink_filter_win.cc', 471 'capture/video/win/sink_filter_win.cc',
472 'capture/video/win/sink_filter_win.h', 472 'capture/video/win/sink_filter_win.h',
473 'capture/video/win/sink_input_pin_win.cc', 473 'capture/video/win/sink_input_pin_win.cc',
474 'capture/video/win/sink_input_pin_win.h', 474 'capture/video/win/sink_input_pin_win.h',
475 'capture/video/win/video_capture_device_factory_win.cc', 475 'capture/video/win/video_capture_device_factory_win.cc',
476 'capture/video/win/video_capture_device_factory_win.h', 476 'capture/video/win/video_capture_device_factory_win.h',
477 'capture/video/win/video_capture_device_mf_win.cc', 477 'capture/video/win/video_capture_device_mf_win.cc',
478 'capture/video/win/video_capture_device_mf_win.h', 478 'capture/video/win/video_capture_device_mf_win.h',
479 'capture/video/win/video_capture_device_win.cc', 479 'capture/video/win/video_capture_device_win.cc',
480 'capture/video/win/video_capture_device_win.h', 480 'capture/video/win/video_capture_device_win.h',
481 'capture/webm_muxer.cc',
482 'capture/webm_muxer.h',
483 'cdm/aes_decryptor.cc', 481 'cdm/aes_decryptor.cc',
484 'cdm/aes_decryptor.h', 482 'cdm/aes_decryptor.h',
485 'cdm/default_cdm_factory.cc', 483 'cdm/default_cdm_factory.cc',
486 'cdm/default_cdm_factory.h', 484 'cdm/default_cdm_factory.h',
487 'cdm/json_web_key.cc', 485 'cdm/json_web_key.cc',
488 'cdm/json_web_key.h', 486 'cdm/json_web_key.h',
489 'cdm/key_system_names.cc', 487 'cdm/key_system_names.cc',
490 'cdm/key_system_names.h', 488 'cdm/key_system_names.h',
491 'cdm/player_tracker_impl.cc', 489 'cdm/player_tracker_impl.cc',
492 'cdm/player_tracker_impl.h', 490 'cdm/player_tracker_impl.h',
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 # Exclude the sources that depend on libvpx. 691 # Exclude the sources that depend on libvpx.
694 'sources!': [ 692 'sources!': [
695 'filters/vpx_video_decoder.cc', 693 'filters/vpx_video_decoder.cc',
696 'filters/vpx_video_decoder.h', 694 'filters/vpx_video_decoder.h',
697 ], 695 ],
698 }], 696 }],
699 ['media_use_libwebm==1', { 697 ['media_use_libwebm==1', {
700 'dependencies': [ 698 'dependencies': [
701 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm', 699 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
702 ], 700 ],
703 }, { # media_use_libwebm==0 701 'sources': [
704 # Exclude the sources that depend on libwebm.
705 'sources!': [
706 'capture/webm_muxer.cc', 702 'capture/webm_muxer.cc',
707 'capture/webm_muxer.h', 703 'capture/webm_muxer.h',
708 ], 704 ],
709 }], 705 }],
710 ['enable_browser_cdms==1', { 706 ['enable_browser_cdms==1', {
711 'sources': [ 707 'sources': [
712 'base/browser_cdm.cc', 708 'base/browser_cdm.cc',
713 'base/browser_cdm.h', 709 'base/browser_cdm.h',
714 'base/browser_cdm_factory.cc', 710 'base/browser_cdm_factory.cc',
715 'base/browser_cdm_factory.h', 711 'base/browser_cdm_factory.h',
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
1266 'filters/jpeg_parser_unittest.cc', 1262 'filters/jpeg_parser_unittest.cc',
1267 'filters/source_buffer_stream_unittest.cc', 1263 'filters/source_buffer_stream_unittest.cc',
1268 'filters/video_cadence_estimator_unittest.cc', 1264 'filters/video_cadence_estimator_unittest.cc',
1269 'filters/video_decoder_selector_unittest.cc', 1265 'filters/video_decoder_selector_unittest.cc',
1270 'filters/video_frame_stream_unittest.cc', 1266 'filters/video_frame_stream_unittest.cc',
1271 'filters/video_renderer_algorithm_unittest.cc', 1267 'filters/video_renderer_algorithm_unittest.cc',
1272 'filters/vp8_bool_decoder_unittest.cc', 1268 'filters/vp8_bool_decoder_unittest.cc',
1273 'filters/vp8_parser_unittest.cc', 1269 'filters/vp8_parser_unittest.cc',
1274 'filters/vp9_parser_unittest.cc', 1270 'filters/vp9_parser_unittest.cc',
1275 'filters/vp9_raw_bits_reader_unittest.cc', 1271 'filters/vp9_raw_bits_reader_unittest.cc',
1276 'capture/webm_muxer_unittest.cc',
1277 'formats/common/offset_byte_queue_unittest.cc', 1272 'formats/common/offset_byte_queue_unittest.cc',
1278 'formats/webm/cluster_builder.cc', 1273 'formats/webm/cluster_builder.cc',
1279 'formats/webm/cluster_builder.h', 1274 'formats/webm/cluster_builder.h',
1280 'formats/webm/opus_packet_builder.cc', 1275 'formats/webm/opus_packet_builder.cc',
1281 'formats/webm/opus_packet_builder.h', 1276 'formats/webm/opus_packet_builder.h',
1282 'formats/webm/tracks_builder.cc', 1277 'formats/webm/tracks_builder.cc',
1283 'formats/webm/tracks_builder.h', 1278 'formats/webm/tracks_builder.h',
1284 'formats/webm/webm_cluster_parser_unittest.cc', 1279 'formats/webm/webm_cluster_parser_unittest.cc',
1285 'formats/webm/webm_content_encodings_client_unittest.cc', 1280 'formats/webm/webm_content_encodings_client_unittest.cc',
1286 'formats/webm/webm_parser_unittest.cc', 1281 'formats/webm/webm_parser_unittest.cc',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
1330 'filters/ffmpeg_video_decoder_unittest.cc', 1325 'filters/ffmpeg_video_decoder_unittest.cc',
1331 'filters/in_memory_url_protocol_unittest.cc', 1326 'filters/in_memory_url_protocol_unittest.cc',
1332 'test/pipeline_integration_test.cc', 1327 'test/pipeline_integration_test.cc',
1333 'test/pipeline_integration_test_base.cc', 1328 'test/pipeline_integration_test_base.cc',
1334 ], 1329 ],
1335 }], 1330 }],
1336 ['media_use_libwebm==1', { 1331 ['media_use_libwebm==1', {
1337 'dependencies': [ 1332 'dependencies': [
1338 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm', 1333 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
1339 ], 1334 ],
1340 }, { # media_use_libwebm==0 1335 'sources': [
1341 # Exclude the sources that depend on libwebm.
1342 'sources!': [
1343 'capture/webm_muxer_unittest.cc', 1336 'capture/webm_muxer_unittest.cc',
1344 ], 1337 ],
1345 }], 1338 }],
1346 1339
1347 ['(os_posix==1 and OS!="mac") or (OS=="win" and component!="shared_libra ry" and win_use_allocator_shim==1)', { 1340 ['(os_posix==1 and OS!="mac") or (OS=="win" and component!="shared_libra ry" and win_use_allocator_shim==1)', {
1348 'conditions': [ 1341 'conditions': [
1349 ['use_allocator!="none"', { 1342 ['use_allocator!="none"', {
1350 'dependencies': [ 1343 'dependencies': [
1351 '../base/allocator/allocator.gyp:allocator', 1344 '../base/allocator/allocator.gyp:allocator',
1352 ], 1345 ],
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
2056 'dependencies': [ 2049 'dependencies': [
2057 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2050 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2058 ], 2051 ],
2059 }], 2052 }],
2060 ], 2053 ],
2061 }, 2054 },
2062 ], 2055 ],
2063 }], 2056 }],
2064 ], 2057 ],
2065 } 2058 }
OLDNEW
« no previous file with comments | « media/capture/webm_muxer_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698