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

Side by Side Diff: media/media.gyp

Issue 10829470: Support for parsing encrypted WebM streams by src. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed bug with playing latest encrypted WebM. Addressing comments. Created 8 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 | Annotate | Revision Log
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 PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 'base/video_decoder_config.cc', 212 'base/video_decoder_config.cc',
213 'base/video_decoder_config.h', 213 'base/video_decoder_config.h',
214 'base/video_frame.cc', 214 'base/video_frame.cc',
215 'base/video_frame.h', 215 'base/video_frame.h',
216 'base/video_renderer.cc', 216 'base/video_renderer.cc',
217 'base/video_renderer.h', 217 'base/video_renderer.h',
218 'base/video_util.cc', 218 'base/video_util.cc',
219 'base/video_util.h', 219 'base/video_util.h',
220 'crypto/aes_decryptor.cc', 220 'crypto/aes_decryptor.cc',
221 'crypto/aes_decryptor.h', 221 'crypto/aes_decryptor.h',
222 'crypto/decryptor_helpers.cc',
223 'crypto/decryptor_helpers.h',
222 'ffmpeg/ffmpeg_common.cc', 224 'ffmpeg/ffmpeg_common.cc',
223 'ffmpeg/ffmpeg_common.h', 225 'ffmpeg/ffmpeg_common.h',
224 'ffmpeg/file_protocol.cc', 226 'ffmpeg/file_protocol.cc',
225 'ffmpeg/file_protocol.h', 227 'ffmpeg/file_protocol.h',
226 'filters/audio_file_reader.cc', 228 'filters/audio_file_reader.cc',
227 'filters/audio_file_reader.h', 229 'filters/audio_file_reader.h',
228 'filters/audio_renderer_algorithm.cc', 230 'filters/audio_renderer_algorithm.cc',
229 'filters/audio_renderer_algorithm.h', 231 'filters/audio_renderer_algorithm.h',
230 'filters/audio_renderer_impl.cc', 232 'filters/audio_renderer_impl.cc',
231 'filters/audio_renderer_impl.h', 233 'filters/audio_renderer_impl.h',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 'video/picture.h', 290 'video/picture.h',
289 'video/video_decode_accelerator.cc', 291 'video/video_decode_accelerator.cc',
290 'video/video_decode_accelerator.h', 292 'video/video_decode_accelerator.h',
291 'webm/webm_cluster_parser.cc', 293 'webm/webm_cluster_parser.cc',
292 'webm/webm_cluster_parser.h', 294 'webm/webm_cluster_parser.h',
293 'webm/webm_constants.h', 295 'webm/webm_constants.h',
294 'webm/webm_content_encodings.cc', 296 'webm/webm_content_encodings.cc',
295 'webm/webm_content_encodings.h', 297 'webm/webm_content_encodings.h',
296 'webm/webm_content_encodings_client.cc', 298 'webm/webm_content_encodings_client.cc',
297 'webm/webm_content_encodings_client.h', 299 'webm/webm_content_encodings_client.h',
300 'webm/webm_crypt_helpers.cc',
301 'webm/webm_crypt_helpers.h',
298 'webm/webm_info_parser.cc', 302 'webm/webm_info_parser.cc',
299 'webm/webm_info_parser.h', 303 'webm/webm_info_parser.h',
300 'webm/webm_parser.cc', 304 'webm/webm_parser.cc',
301 'webm/webm_parser.h', 305 'webm/webm_parser.h',
302 'webm/webm_stream_parser.cc', 306 'webm/webm_stream_parser.cc',
303 'webm/webm_stream_parser.h', 307 'webm/webm_stream_parser.h',
304 'webm/webm_tracks_parser.cc', 308 'webm/webm_tracks_parser.cc',
305 'webm/webm_tracks_parser.h', 309 'webm/webm_tracks_parser.h',
306 ], 310 ],
307 'direct_dependent_settings': { 311 'direct_dependent_settings': {
(...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
1154 'media', 1158 'media',
1155 ], 1159 ],
1156 'sources': [ 1160 'sources': [
1157 'tools/media_bench/media_bench.cc', 1161 'tools/media_bench/media_bench.cc',
1158 ], 1162 ],
1159 }, 1163 },
1160 ], 1164 ],
1161 }] 1165 }]
1162 ], 1166 ],
1163 } 1167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698