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

Side by Side Diff: media/media.gyp

Issue 16320005: Define EncodedVideoSource and RtcCapturedEncodingVideoCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use int instead of size_t for bitstream buffer size to match IPC definition. Created 7 years, 6 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 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 'base/decryptor.cc', 255 'base/decryptor.cc',
256 'base/decryptor.h', 256 'base/decryptor.h',
257 'base/decrypt_config.cc', 257 'base/decrypt_config.cc',
258 'base/decrypt_config.h', 258 'base/decrypt_config.h',
259 'base/demuxer.cc', 259 'base/demuxer.cc',
260 'base/demuxer.h', 260 'base/demuxer.h',
261 'base/demuxer_stream.cc', 261 'base/demuxer_stream.cc',
262 'base/demuxer_stream.h', 262 'base/demuxer_stream.h',
263 'base/djb2.cc', 263 'base/djb2.cc',
264 'base/djb2.h', 264 'base/djb2.h',
265 'base/encoded_bitstream_buffer.cc',
266 'base/encoded_bitstream_buffer.h',
265 'base/filter_collection.cc', 267 'base/filter_collection.cc',
266 'base/filter_collection.h', 268 'base/filter_collection.h',
267 'base/media.cc', 269 'base/media.cc',
268 'base/media.h', 270 'base/media.h',
269 'base/media_keys.cc', 271 'base/media_keys.cc',
270 'base/media_keys.h', 272 'base/media_keys.h',
271 'base/media_log.cc', 273 'base/media_log.cc',
272 'base/media_log.h', 274 'base/media_log.h',
273 'base/media_log_event.h', 275 'base/media_log_event.h',
274 'base/media_posix.cc', 276 'base/media_posix.cc',
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 'video/capture/win/pin_base_win.h', 407 'video/capture/win/pin_base_win.h',
406 'video/capture/win/sink_filter_observer_win.h', 408 'video/capture/win/sink_filter_observer_win.h',
407 'video/capture/win/sink_filter_win.cc', 409 'video/capture/win/sink_filter_win.cc',
408 'video/capture/win/sink_filter_win.h', 410 'video/capture/win/sink_filter_win.h',
409 'video/capture/win/sink_input_pin_win.cc', 411 'video/capture/win/sink_input_pin_win.cc',
410 'video/capture/win/sink_input_pin_win.h', 412 'video/capture/win/sink_input_pin_win.h',
411 'video/capture/win/video_capture_device_mf_win.cc', 413 'video/capture/win/video_capture_device_mf_win.cc',
412 'video/capture/win/video_capture_device_mf_win.h', 414 'video/capture/win/video_capture_device_mf_win.h',
413 'video/capture/win/video_capture_device_win.cc', 415 'video/capture/win/video_capture_device_win.cc',
414 'video/capture/win/video_capture_device_win.h', 416 'video/capture/win/video_capture_device_win.h',
417 'video/encoded_video_source.h',
415 'video/picture.cc', 418 'video/picture.cc',
416 'video/picture.h', 419 'video/picture.h',
417 'video/video_decode_accelerator.cc', 420 'video/video_decode_accelerator.cc',
418 'video/video_decode_accelerator.h', 421 'video/video_decode_accelerator.h',
422 'video/video_encode_types.h',
419 'webm/webm_audio_client.cc', 423 'webm/webm_audio_client.cc',
420 'webm/webm_audio_client.h', 424 'webm/webm_audio_client.h',
421 'webm/webm_cluster_parser.cc', 425 'webm/webm_cluster_parser.cc',
422 'webm/webm_cluster_parser.h', 426 'webm/webm_cluster_parser.h',
423 'webm/webm_constants.cc', 427 'webm/webm_constants.cc',
424 'webm/webm_constants.h', 428 'webm/webm_constants.h',
425 'webm/webm_content_encodings.cc', 429 'webm/webm_content_encodings.cc',
426 'webm/webm_content_encodings.h', 430 'webm/webm_content_encodings.h',
427 'webm/webm_content_encodings_client.cc', 431 'webm/webm_content_encodings_client.cc',
428 'webm/webm_content_encodings_client.h', 432 'webm/webm_content_encodings_client.h',
(...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 'sources': [ 1646 'sources': [
1643 'tools/media_bench/media_bench.cc', 1647 'tools/media_bench/media_bench.cc',
1644 ], 1648 ],
1645 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1649 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1646 'msvs_disabled_warnings': [ 4267, ], 1650 'msvs_disabled_warnings': [ 4267, ],
1647 }, 1651 },
1648 ], 1652 ],
1649 }], 1653 }],
1650 ], 1654 ],
1651 } 1655 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698