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

Side by Side Diff: media/media.gyp

Issue 257793004: Update VideoFrameScheduler API and add clockless and testing implementations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 6 years, 7 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
« no previous file with comments | « media/filters/video_frame_scheduler_unittest.cc ('k') | no next file » | 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 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 'filters/file_data_source_unittest.cc', 1036 'filters/file_data_source_unittest.cc',
1037 'filters/h264_bit_reader_unittest.cc', 1037 'filters/h264_bit_reader_unittest.cc',
1038 'filters/h264_parser_unittest.cc', 1038 'filters/h264_parser_unittest.cc',
1039 'filters/h264_to_annex_b_bitstream_converter_unittest.cc', 1039 'filters/h264_to_annex_b_bitstream_converter_unittest.cc',
1040 'filters/pipeline_integration_test.cc', 1040 'filters/pipeline_integration_test.cc',
1041 'filters/pipeline_integration_test_base.cc', 1041 'filters/pipeline_integration_test_base.cc',
1042 'filters/skcanvas_video_renderer_unittest.cc', 1042 'filters/skcanvas_video_renderer_unittest.cc',
1043 'filters/source_buffer_stream_unittest.cc', 1043 'filters/source_buffer_stream_unittest.cc',
1044 'filters/video_decoder_selector_unittest.cc', 1044 'filters/video_decoder_selector_unittest.cc',
1045 'filters/video_frame_scheduler_impl_unittest.cc', 1045 'filters/video_frame_scheduler_impl_unittest.cc',
1046 'filters/video_frame_scheduler_unittest.cc',
1046 'filters/video_frame_stream_unittest.cc', 1047 'filters/video_frame_stream_unittest.cc',
1047 'filters/video_renderer_impl_unittest.cc', 1048 'filters/video_renderer_impl_unittest.cc',
1048 'midi/midi_manager_usb_unittest.cc', 1049 'midi/midi_manager_usb_unittest.cc',
1049 'midi/midi_message_queue_unittest.cc', 1050 'midi/midi_message_queue_unittest.cc',
1050 'midi/midi_message_util_unittest.cc', 1051 'midi/midi_message_util_unittest.cc',
1051 'midi/usb_midi_descriptor_parser_unittest.cc', 1052 'midi/usb_midi_descriptor_parser_unittest.cc',
1052 'midi/usb_midi_input_stream_unittest.cc', 1053 'midi/usb_midi_input_stream_unittest.cc',
1053 'midi/usb_midi_output_stream_unittest.cc', 1054 'midi/usb_midi_output_stream_unittest.cc',
1054 'video/capture/video_capture_device_unittest.cc', 1055 'video/capture/video_capture_device_unittest.cc',
1055 'formats/common/offset_byte_queue_unittest.cc', 1056 'formats/common/offset_byte_queue_unittest.cc',
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 'base/mock_audio_renderer_sink.cc', 1257 'base/mock_audio_renderer_sink.cc',
1257 'base/mock_audio_renderer_sink.h', 1258 'base/mock_audio_renderer_sink.h',
1258 'base/mock_demuxer_host.cc', 1259 'base/mock_demuxer_host.cc',
1259 'base/mock_demuxer_host.h', 1260 'base/mock_demuxer_host.h',
1260 'base/mock_filters.cc', 1261 'base/mock_filters.cc',
1261 'base/mock_filters.h', 1262 'base/mock_filters.h',
1262 'base/test_data_util.cc', 1263 'base/test_data_util.cc',
1263 'base/test_data_util.h', 1264 'base/test_data_util.h',
1264 'base/test_helpers.cc', 1265 'base/test_helpers.cc',
1265 'base/test_helpers.h', 1266 'base/test_helpers.h',
1267 'filters/clockless_video_frame_scheduler.cc',
1268 'filters/clockless_video_frame_scheduler.h',
1266 'filters/mock_gpu_video_accelerator_factories.cc', 1269 'filters/mock_gpu_video_accelerator_factories.cc',
1267 'filters/mock_gpu_video_accelerator_factories.h', 1270 'filters/mock_gpu_video_accelerator_factories.h',
1271 'filters/test_video_frame_scheduler.cc',
1272 'filters/test_video_frame_scheduler.h',
1268 'video/mock_video_decode_accelerator.cc', 1273 'video/mock_video_decode_accelerator.cc',
1269 'video/mock_video_decode_accelerator.h', 1274 'video/mock_video_decode_accelerator.h',
1270 ], 1275 ],
1271 }, 1276 },
1272 { 1277 {
1273 # Minimal target for NaCl and other renderer side media clients which 1278 # Minimal target for NaCl and other renderer side media clients which
1274 # only need to send audio data across the shared memory to the browser 1279 # only need to send audio data across the shared memory to the browser
1275 # process. 1280 # process.
1276 'target_name': 'shared_memory_support', 1281 'target_name': 'shared_memory_support',
1277 'type': '<(component)', 1282 'type': '<(component)',
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
1682 ], 1687 ],
1683 }], 1688 }],
1684 ], 1689 ],
1685 }], 1690 }],
1686 ], 1691 ],
1687 }, 1692 },
1688 ], 1693 ],
1689 }], 1694 }],
1690 ], 1695 ],
1691 } 1696 }
OLDNEW
« no previous file with comments | « media/filters/video_frame_scheduler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698