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

Side by Side Diff: media/media.gyp

Issue 12379011: Interfaces for encoded video sources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 9 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 2013 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 'conditions': [ 10 'conditions': [
11 ['OS == "android" or OS == "ios"', { 11 ['OS == "android" or OS == "ios"', {
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 'base/decryptor.cc', 235 'base/decryptor.cc',
236 'base/decryptor.h', 236 'base/decryptor.h',
237 'base/decrypt_config.cc', 237 'base/decrypt_config.cc',
238 'base/decrypt_config.h', 238 'base/decrypt_config.h',
239 'base/demuxer.cc', 239 'base/demuxer.cc',
240 'base/demuxer.h', 240 'base/demuxer.h',
241 'base/demuxer_stream.cc', 241 'base/demuxer_stream.cc',
242 'base/demuxer_stream.h', 242 'base/demuxer_stream.h',
243 'base/djb2.cc', 243 'base/djb2.cc',
244 'base/djb2.h', 244 'base/djb2.h',
245 'base/encoded_bitstream_buffer.cc',
246 'base/encoded_bitstream_buffer.h',
245 'base/filter_collection.cc', 247 'base/filter_collection.cc',
246 'base/filter_collection.h', 248 'base/filter_collection.h',
247 'base/media.h', 249 'base/media.h',
248 'base/media_log.cc', 250 'base/media_log.cc',
249 'base/media_log.h', 251 'base/media_log.h',
250 'base/media_log_event.h', 252 'base/media_log_event.h',
251 'base/media_posix.cc', 253 'base/media_posix.cc',
252 'base/media_switches.cc', 254 'base/media_switches.cc',
253 'base/media_switches.h', 255 'base/media_switches.h',
254 'base/media_win.cc', 256 'base/media_win.cc',
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 'video/capture/win/pin_base_win.h', 398 'video/capture/win/pin_base_win.h',
397 'video/capture/win/sink_filter_observer_win.h', 399 'video/capture/win/sink_filter_observer_win.h',
398 'video/capture/win/sink_filter_win.cc', 400 'video/capture/win/sink_filter_win.cc',
399 'video/capture/win/sink_filter_win.h', 401 'video/capture/win/sink_filter_win.h',
400 'video/capture/win/sink_input_pin_win.cc', 402 'video/capture/win/sink_input_pin_win.cc',
401 'video/capture/win/sink_input_pin_win.h', 403 'video/capture/win/sink_input_pin_win.h',
402 'video/capture/win/video_capture_device_mf_win.cc', 404 'video/capture/win/video_capture_device_mf_win.cc',
403 'video/capture/win/video_capture_device_mf_win.h', 405 'video/capture/win/video_capture_device_mf_win.h',
404 'video/capture/win/video_capture_device_win.cc', 406 'video/capture/win/video_capture_device_win.cc',
405 'video/capture/win/video_capture_device_win.h', 407 'video/capture/win/video_capture_device_win.h',
408 'video/encoded_video_source.h',
406 'video/picture.cc', 409 'video/picture.cc',
407 'video/picture.h', 410 'video/picture.h',
408 'video/video_decode_accelerator.cc', 411 'video/video_decode_accelerator.cc',
409 'video/video_decode_accelerator.h', 412 'video/video_decode_accelerator.h',
413 'video/video_encode_types.cc',
414 'video/video_encode_types.h',
410 'webm/webm_cluster_parser.cc', 415 'webm/webm_cluster_parser.cc',
411 'webm/webm_cluster_parser.h', 416 'webm/webm_cluster_parser.h',
412 'webm/webm_constants.h', 417 'webm/webm_constants.h',
413 'webm/webm_content_encodings.cc', 418 'webm/webm_content_encodings.cc',
414 'webm/webm_content_encodings.h', 419 'webm/webm_content_encodings.h',
415 'webm/webm_content_encodings_client.cc', 420 'webm/webm_content_encodings_client.cc',
416 'webm/webm_content_encodings_client.h', 421 'webm/webm_content_encodings_client.h',
417 'webm/webm_crypto_helpers.cc', 422 'webm/webm_crypto_helpers.cc',
418 'webm/webm_crypto_helpers.h', 423 'webm/webm_crypto_helpers.h',
419 'webm/webm_info_parser.cc', 424 'webm/webm_info_parser.cc',
(...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
1628 ], 1633 ],
1629 'sources': [ 1634 'sources': [
1630 'base/simd/sinc_resampler_sse.cc', 1635 'base/simd/sinc_resampler_sse.cc',
1631 'base/simd/vector_math_sse.cc', 1636 'base/simd/vector_math_sse.cc',
1632 ], 1637 ],
1633 }, # end of target media_sse 1638 }, # end of target media_sse
1634 ], 1639 ],
1635 }], 1640 }],
1636 ], 1641 ],
1637 } 1642 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698