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

Side by Side Diff: media/media.gyp

Issue 1225123006: media/capture: Adding WebmMuxer class and unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@m_crbug262211__MSRecorder__2__libwebm_reland_in_third_party
Patch Set: Using base::StringPiece for encoded_data input Created 5 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
« no previous file with comments | « media/capture/webm_muxer_unittest.cc ('k') | media/media_options.gni » ('j') | 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 459 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 'capture/video/win/sink_filter_win.cc', 470 'capture/video/win/sink_filter_win.cc',
471 'capture/video/win/sink_filter_win.h', 471 'capture/video/win/sink_filter_win.h',
472 'capture/video/win/sink_input_pin_win.cc', 472 'capture/video/win/sink_input_pin_win.cc',
473 'capture/video/win/sink_input_pin_win.h', 473 'capture/video/win/sink_input_pin_win.h',
474 'capture/video/win/video_capture_device_factory_win.cc', 474 'capture/video/win/video_capture_device_factory_win.cc',
475 'capture/video/win/video_capture_device_factory_win.h', 475 'capture/video/win/video_capture_device_factory_win.h',
476 'capture/video/win/video_capture_device_mf_win.cc', 476 'capture/video/win/video_capture_device_mf_win.cc',
477 'capture/video/win/video_capture_device_mf_win.h', 477 'capture/video/win/video_capture_device_mf_win.h',
478 'capture/video/win/video_capture_device_win.cc', 478 'capture/video/win/video_capture_device_win.cc',
479 'capture/video/win/video_capture_device_win.h', 479 'capture/video/win/video_capture_device_win.h',
480 'capture/webm_muxer.cc',
481 'capture/webm_muxer.h',
480 'cdm/aes_decryptor.cc', 482 'cdm/aes_decryptor.cc',
481 'cdm/aes_decryptor.h', 483 'cdm/aes_decryptor.h',
482 'cdm/default_cdm_factory.cc', 484 'cdm/default_cdm_factory.cc',
483 'cdm/default_cdm_factory.h', 485 'cdm/default_cdm_factory.h',
484 'cdm/json_web_key.cc', 486 'cdm/json_web_key.cc',
485 'cdm/json_web_key.h', 487 'cdm/json_web_key.h',
486 'cdm/key_system_names.cc', 488 'cdm/key_system_names.cc',
487 'cdm/key_system_names.h', 489 'cdm/key_system_names.h',
488 'cdm/player_tracker_impl.cc', 490 'cdm/player_tracker_impl.cc',
489 'cdm/player_tracker_impl.h', 491 'cdm/player_tracker_impl.h',
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 'defines': [ 682 'defines': [
681 'MEDIA_DISABLE_LIBVPX', 683 'MEDIA_DISABLE_LIBVPX',
682 ], 684 ],
683 }, 685 },
684 # Exclude the sources that depend on libvpx. 686 # Exclude the sources that depend on libvpx.
685 'sources!': [ 687 'sources!': [
686 'filters/vpx_video_decoder.cc', 688 'filters/vpx_video_decoder.cc',
687 'filters/vpx_video_decoder.h', 689 'filters/vpx_video_decoder.h',
688 ], 690 ],
689 }], 691 }],
692 ['media_use_libwebm==1', {
693 'dependencies': [
694 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
695 ],
696 }, { # media_use_libwebm==0
697 # Exclude the sources that depend on libwebm.
698 'sources!': [
699 'capture/webm_muxer.cc',
700 'capture/webm_muxer.h',
701 ],
702 }],
690 ['enable_browser_cdms==1', { 703 ['enable_browser_cdms==1', {
691 'sources': [ 704 'sources': [
692 'base/browser_cdm.cc', 705 'base/browser_cdm.cc',
693 'base/browser_cdm.h', 706 'base/browser_cdm.h',
694 'base/browser_cdm_factory.cc', 707 'base/browser_cdm_factory.cc',
695 'base/browser_cdm_factory.h', 708 'base/browser_cdm_factory.h',
696 ], 709 ],
697 }], 710 }],
698 ['OS=="android"', { 711 ['OS=="android"', {
699 'dependencies': [ 712 'dependencies': [
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after
1240 'filters/h264_parser_unittest.cc', 1253 'filters/h264_parser_unittest.cc',
1241 'filters/in_memory_url_protocol_unittest.cc', 1254 'filters/in_memory_url_protocol_unittest.cc',
1242 'filters/jpeg_parser_unittest.cc', 1255 'filters/jpeg_parser_unittest.cc',
1243 'filters/source_buffer_stream_unittest.cc', 1256 'filters/source_buffer_stream_unittest.cc',
1244 'filters/video_cadence_estimator_unittest.cc', 1257 'filters/video_cadence_estimator_unittest.cc',
1245 'filters/video_decoder_selector_unittest.cc', 1258 'filters/video_decoder_selector_unittest.cc',
1246 'filters/video_frame_stream_unittest.cc', 1259 'filters/video_frame_stream_unittest.cc',
1247 'filters/video_renderer_algorithm_unittest.cc', 1260 'filters/video_renderer_algorithm_unittest.cc',
1248 'filters/vp8_bool_decoder_unittest.cc', 1261 'filters/vp8_bool_decoder_unittest.cc',
1249 'filters/vp8_parser_unittest.cc', 1262 'filters/vp8_parser_unittest.cc',
1263 'capture/webm_muxer_unittest.cc',
1250 'formats/common/offset_byte_queue_unittest.cc', 1264 'formats/common/offset_byte_queue_unittest.cc',
1251 'formats/webm/cluster_builder.cc', 1265 'formats/webm/cluster_builder.cc',
1252 'formats/webm/cluster_builder.h', 1266 'formats/webm/cluster_builder.h',
1253 'formats/webm/opus_packet_builder.cc', 1267 'formats/webm/opus_packet_builder.cc',
1254 'formats/webm/opus_packet_builder.h', 1268 'formats/webm/opus_packet_builder.h',
1255 'formats/webm/tracks_builder.cc', 1269 'formats/webm/tracks_builder.cc',
1256 'formats/webm/tracks_builder.h', 1270 'formats/webm/tracks_builder.h',
1257 'formats/webm/webm_cluster_parser_unittest.cc', 1271 'formats/webm/webm_cluster_parser_unittest.cc',
1258 'formats/webm/webm_content_encodings_client_unittest.cc', 1272 'formats/webm/webm_content_encodings_client_unittest.cc',
1259 'formats/webm/webm_parser_unittest.cc', 1273 'formats/webm/webm_parser_unittest.cc',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
1299 'base/container_names_unittest.cc', 1313 'base/container_names_unittest.cc',
1300 'base/media_file_checker_unittest.cc', 1314 'base/media_file_checker_unittest.cc',
1301 'filters/audio_file_reader_unittest.cc', 1315 'filters/audio_file_reader_unittest.cc',
1302 'filters/blocking_url_protocol_unittest.cc', 1316 'filters/blocking_url_protocol_unittest.cc',
1303 'filters/ffmpeg_video_decoder_unittest.cc', 1317 'filters/ffmpeg_video_decoder_unittest.cc',
1304 'filters/in_memory_url_protocol_unittest.cc', 1318 'filters/in_memory_url_protocol_unittest.cc',
1305 'test/pipeline_integration_test.cc', 1319 'test/pipeline_integration_test.cc',
1306 'test/pipeline_integration_test_base.cc', 1320 'test/pipeline_integration_test_base.cc',
1307 ], 1321 ],
1308 }], 1322 }],
1323 ['media_use_libwebm==1', {
1324 'dependencies': [
1325 '<(DEPTH)/third_party/libwebm/libwebm.gyp:libwebm',
1326 ],
1327 }, { # media_use_libwebm==0
1328 # Exclude the sources that depend on libwebm.
1329 'sources!': [
1330 'capture/webm_muxer_unittest.cc',
1331 ],
1332 }],
1333
1309 ['(os_posix==1 and OS!="mac") or (OS=="win" and component!="shared_libra ry" and win_use_allocator_shim==1)', { 1334 ['(os_posix==1 and OS!="mac") or (OS=="win" and component!="shared_libra ry" and win_use_allocator_shim==1)', {
1310 'conditions': [ 1335 'conditions': [
1311 ['use_allocator!="none"', { 1336 ['use_allocator!="none"', {
1312 'dependencies': [ 1337 'dependencies': [
1313 '../base/allocator/allocator.gyp:allocator', 1338 '../base/allocator/allocator.gyp:allocator',
1314 ], 1339 ],
1315 }], 1340 }],
1316 ], 1341 ],
1317 }], 1342 }],
1318 ['OS=="android"', { 1343 ['OS=="android"', {
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after
2014 'dependencies': [ 2039 'dependencies': [
2015 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2040 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2016 ], 2041 ],
2017 }], 2042 }],
2018 ], 2043 ],
2019 }, 2044 },
2020 ], 2045 ],
2021 }], 2046 }],
2022 ], 2047 ],
2023 } 2048 }
OLDNEW
« no previous file with comments | « media/capture/webm_muxer_unittest.cc ('k') | media/media_options.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698