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

Side by Side Diff: media/media.gyp

Issue 1712903002: Remove prefixed EME. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix isRenewalMessage() in browser tests. Created 4 years, 10 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/cdm/proxy_decryptor.cc ('k') | media/mojo/interfaces/content_decryption_module.mojom » ('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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 'base/demuxer_stream.h', 315 'base/demuxer_stream.h',
316 'base/demuxer_stream_provider.cc', 316 'base/demuxer_stream_provider.cc',
317 'base/demuxer_stream_provider.h', 317 'base/demuxer_stream_provider.h',
318 'base/djb2.cc', 318 'base/djb2.cc',
319 'base/djb2.h', 319 'base/djb2.h',
320 'base/eme_constants.h', 320 'base/eme_constants.h',
321 'base/key_system_info.cc', 321 'base/key_system_info.cc',
322 'base/key_system_info.h', 322 'base/key_system_info.h',
323 'base/key_systems.cc', 323 'base/key_systems.cc',
324 'base/key_systems.h', 324 'base/key_systems.h',
325 'base/key_systems_support_uma.cc',
326 'base/key_systems_support_uma.h',
327 'base/keyboard_event_counter.cc', 325 'base/keyboard_event_counter.cc',
328 'base/keyboard_event_counter.h', 326 'base/keyboard_event_counter.h',
329 'base/loopback_audio_converter.cc', 327 'base/loopback_audio_converter.cc',
330 'base/loopback_audio_converter.h', 328 'base/loopback_audio_converter.h',
331 'base/mac/avfoundation_glue.h', 329 'base/mac/avfoundation_glue.h',
332 'base/mac/avfoundation_glue.mm', 330 'base/mac/avfoundation_glue.mm',
333 'base/mac/coremedia_glue.h', 331 'base/mac/coremedia_glue.h',
334 'base/mac/coremedia_glue.mm', 332 'base/mac/coremedia_glue.mm',
335 'base/mac/corevideo_glue.h', 333 'base/mac/corevideo_glue.h',
336 'base/mac/video_frame_mac.cc', 334 'base/mac/video_frame_mac.cc',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 'cdm/cdm_helpers.cc', 518 'cdm/cdm_helpers.cc',
521 'cdm/cdm_helpers.h', 519 'cdm/cdm_helpers.h',
522 'cdm/default_cdm_factory.cc', 520 'cdm/default_cdm_factory.cc',
523 'cdm/default_cdm_factory.h', 521 'cdm/default_cdm_factory.h',
524 'cdm/json_web_key.cc', 522 'cdm/json_web_key.cc',
525 'cdm/json_web_key.h', 523 'cdm/json_web_key.h',
526 'cdm/key_system_names.cc', 524 'cdm/key_system_names.cc',
527 'cdm/key_system_names.h', 525 'cdm/key_system_names.h',
528 'cdm/player_tracker_impl.cc', 526 'cdm/player_tracker_impl.cc',
529 'cdm/player_tracker_impl.h', 527 'cdm/player_tracker_impl.h',
530 'cdm/proxy_decryptor.cc',
531 'cdm/proxy_decryptor.h',
532 'cdm/supported_cdm_versions.cc', 528 'cdm/supported_cdm_versions.cc',
533 'cdm/supported_cdm_versions.h', 529 'cdm/supported_cdm_versions.h',
534 'ffmpeg/ffmpeg_common.cc', 530 'ffmpeg/ffmpeg_common.cc',
535 'ffmpeg/ffmpeg_common.h', 531 'ffmpeg/ffmpeg_common.h',
536 'ffmpeg/ffmpeg_deleters.h', 532 'ffmpeg/ffmpeg_deleters.h',
537 'filters/audio_clock.cc', 533 'filters/audio_clock.cc',
538 'filters/audio_clock.h', 534 'filters/audio_clock.h',
539 'filters/audio_file_reader.cc', 535 'filters/audio_file_reader.cc',
540 'filters/audio_file_reader.h', 536 'filters/audio_file_reader.h',
541 'filters/audio_renderer_algorithm.cc', 537 'filters/audio_renderer_algorithm.cc',
(...skipping 1638 matching lines...) Expand 10 before | Expand all | Expand 10 after
2180 'dependencies': [ 2176 'dependencies': [
2181 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2177 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2182 ], 2178 ],
2183 }], 2179 }],
2184 ], 2180 ],
2185 }, 2181 },
2186 ], 2182 ],
2187 }], 2183 }],
2188 ], 2184 ],
2189 } 2185 }
OLDNEW
« no previous file with comments | « media/cdm/proxy_decryptor.cc ('k') | media/mojo/interfaces/content_decryption_module.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698