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

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: Clarify the lifetime of EVS clients and the RTC encoding capturer factory. 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'base/decryptor.cc', 247 'base/decryptor.cc',
248 'base/decryptor.h', 248 'base/decryptor.h',
249 'base/decrypt_config.cc', 249 'base/decrypt_config.cc',
250 'base/decrypt_config.h', 250 'base/decrypt_config.h',
251 'base/demuxer.cc', 251 'base/demuxer.cc',
252 'base/demuxer.h', 252 'base/demuxer.h',
253 'base/demuxer_stream.cc', 253 'base/demuxer_stream.cc',
254 'base/demuxer_stream.h', 254 'base/demuxer_stream.h',
255 'base/djb2.cc', 255 'base/djb2.cc',
256 'base/djb2.h', 256 'base/djb2.h',
257 'base/encoded_bitstream_buffer.cc',
258 'base/encoded_bitstream_buffer.h',
257 'base/filter_collection.cc', 259 'base/filter_collection.cc',
258 'base/filter_collection.h', 260 'base/filter_collection.h',
259 'base/media.cc', 261 'base/media.cc',
260 'base/media.h', 262 'base/media.h',
261 'base/media_keys.cc', 263 'base/media_keys.cc',
262 'base/media_keys.h', 264 'base/media_keys.h',
263 'base/media_log.cc', 265 'base/media_log.cc',
264 'base/media_log.h', 266 'base/media_log.h',
265 'base/media_log_event.h', 267 'base/media_log_event.h',
266 'base/media_posix.cc', 268 'base/media_posix.cc',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 'video/capture/win/pin_base_win.h', 397 'video/capture/win/pin_base_win.h',
396 'video/capture/win/sink_filter_observer_win.h', 398 'video/capture/win/sink_filter_observer_win.h',
397 'video/capture/win/sink_filter_win.cc', 399 'video/capture/win/sink_filter_win.cc',
398 'video/capture/win/sink_filter_win.h', 400 'video/capture/win/sink_filter_win.h',
399 'video/capture/win/sink_input_pin_win.cc', 401 'video/capture/win/sink_input_pin_win.cc',
400 'video/capture/win/sink_input_pin_win.h', 402 'video/capture/win/sink_input_pin_win.h',
401 'video/capture/win/video_capture_device_mf_win.cc', 403 'video/capture/win/video_capture_device_mf_win.cc',
402 'video/capture/win/video_capture_device_mf_win.h', 404 'video/capture/win/video_capture_device_mf_win.h',
403 'video/capture/win/video_capture_device_win.cc', 405 'video/capture/win/video_capture_device_win.cc',
404 'video/capture/win/video_capture_device_win.h', 406 'video/capture/win/video_capture_device_win.h',
407 'video/encoded_video_source.h',
405 'video/picture.cc', 408 'video/picture.cc',
406 'video/picture.h', 409 'video/picture.h',
407 'video/video_decode_accelerator.cc', 410 'video/video_decode_accelerator.cc',
408 'video/video_decode_accelerator.h', 411 'video/video_decode_accelerator.h',
412 'video/video_encode_types.h',
409 'webm/webm_audio_client.cc', 413 'webm/webm_audio_client.cc',
410 'webm/webm_audio_client.h', 414 'webm/webm_audio_client.h',
411 'webm/webm_cluster_parser.cc', 415 'webm/webm_cluster_parser.cc',
412 'webm/webm_cluster_parser.h', 416 'webm/webm_cluster_parser.h',
413 'webm/webm_constants.cc', 417 'webm/webm_constants.cc',
414 'webm/webm_constants.h', 418 'webm/webm_constants.h',
415 'webm/webm_content_encodings.cc', 419 'webm/webm_content_encodings.cc',
416 'webm/webm_content_encodings.h', 420 'webm/webm_content_encodings.h',
417 'webm/webm_content_encodings_client.cc', 421 'webm/webm_content_encodings_client.cc',
418 'webm/webm_content_encodings_client.h', 422 'webm/webm_content_encodings_client.h',
(...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1615 'sources': [ 1619 'sources': [
1616 'tools/media_bench/media_bench.cc', 1620 'tools/media_bench/media_bench.cc',
1617 ], 1621 ],
1618 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1622 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1619 'msvs_disabled_warnings': [ 4267, ], 1623 'msvs_disabled_warnings': [ 4267, ],
1620 }, 1624 },
1621 ], 1625 ],
1622 }], 1626 }],
1623 ], 1627 ],
1624 } 1628 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698