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

Side by Side Diff: media/media.gyp

Issue 1888603002: Add CdmFileIOProvider interface for use by cdm_adapter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 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 452 matching lines...) Expand 10 before | Expand all | Expand 10 after
463 'base/win/mf_initializer.cc', 463 'base/win/mf_initializer.cc',
464 'base/win/mf_initializer.h', 464 'base/win/mf_initializer.h',
465 'base/yuv_convert.cc', 465 'base/yuv_convert.cc',
466 'base/yuv_convert.h', 466 'base/yuv_convert.h',
467 'cdm/aes_decryptor.cc', 467 'cdm/aes_decryptor.cc',
468 'cdm/aes_decryptor.h', 468 'cdm/aes_decryptor.h',
469 'cdm/cdm_adapter.cc', 469 'cdm/cdm_adapter.cc',
470 'cdm/cdm_adapter.h', 470 'cdm/cdm_adapter.h',
471 'cdm/cdm_allocator.cc', 471 'cdm/cdm_allocator.cc',
472 'cdm/cdm_allocator.h', 472 'cdm/cdm_allocator.h',
473 'cdm/cdm_file_io_provider.h',
474 'cdm/cdm_file_io_provider.h',
473 'cdm/cdm_helpers.cc', 475 'cdm/cdm_helpers.cc',
474 'cdm/cdm_helpers.h', 476 'cdm/cdm_helpers.h',
475 'cdm/default_cdm_factory.cc', 477 'cdm/default_cdm_factory.cc',
476 'cdm/default_cdm_factory.h', 478 'cdm/default_cdm_factory.h',
477 'cdm/json_web_key.cc', 479 'cdm/json_web_key.cc',
478 'cdm/json_web_key.h', 480 'cdm/json_web_key.h',
479 'cdm/key_system_names.cc', 481 'cdm/key_system_names.cc',
480 'cdm/key_system_names.h', 482 'cdm/key_system_names.h',
481 'cdm/player_tracker_impl.cc', 483 'cdm/player_tracker_impl.cc',
482 'cdm/player_tracker_impl.h', 484 'cdm/player_tracker_impl.h',
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
1186 'base/yuv_convert_unittest.cc', 1188 'base/yuv_convert_unittest.cc',
1187 'cdm/aes_decryptor_unittest.cc', 1189 'cdm/aes_decryptor_unittest.cc',
1188 'cdm/external_clear_key_test_helper.cc', 1190 'cdm/external_clear_key_test_helper.cc',
1189 'cdm/external_clear_key_test_helper.h', 1191 'cdm/external_clear_key_test_helper.h',
1190 'cdm/json_web_key_unittest.cc', 1192 'cdm/json_web_key_unittest.cc',
1191 'cdm/simple_cdm_allocator.cc', 1193 'cdm/simple_cdm_allocator.cc',
1192 'cdm/simple_cdm_allocator.h', 1194 'cdm/simple_cdm_allocator.h',
1193 'cdm/simple_cdm_allocator_unittest.cc', 1195 'cdm/simple_cdm_allocator_unittest.cc',
1194 'cdm/simple_cdm_buffer.cc', 1196 'cdm/simple_cdm_buffer.cc',
1195 'cdm/simple_cdm_buffer.h', 1197 'cdm/simple_cdm_buffer.h',
1198 'cdm/simple_cdm_file_io_provider.cc',
1199 'cdm/simple_cdm_file_io_provider.h',
1196 'ffmpeg/ffmpeg_common_unittest.cc', 1200 'ffmpeg/ffmpeg_common_unittest.cc',
1197 'filters/audio_clock_unittest.cc', 1201 'filters/audio_clock_unittest.cc',
1198 'filters/audio_decoder_selector_unittest.cc', 1202 'filters/audio_decoder_selector_unittest.cc',
1199 'filters/audio_decoder_unittest.cc', 1203 'filters/audio_decoder_unittest.cc',
1200 'filters/audio_file_reader_unittest.cc', 1204 'filters/audio_file_reader_unittest.cc',
1201 'filters/audio_renderer_algorithm_unittest.cc', 1205 'filters/audio_renderer_algorithm_unittest.cc',
1202 'filters/blocking_url_protocol_unittest.cc', 1206 'filters/blocking_url_protocol_unittest.cc',
1203 'filters/chunk_demuxer_unittest.cc', 1207 'filters/chunk_demuxer_unittest.cc',
1204 'filters/decrypting_audio_decoder_unittest.cc', 1208 'filters/decrypting_audio_decoder_unittest.cc',
1205 'filters/decrypting_demuxer_stream_unittest.cc', 1209 'filters/decrypting_demuxer_stream_unittest.cc',
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
2068 'dependencies': [ 2072 'dependencies': [
2069 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2073 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2070 ], 2074 ],
2071 }], 2075 }],
2072 ], 2076 ],
2073 }, 2077 },
2074 ], 2078 ],
2075 }], 2079 }],
2076 ], 2080 ],
2077 } 2081 }
OLDNEW
« media/cdm/cdm_file_io_provider.h ('K') | « media/cdm/simple_cdm_file_io_provider.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698