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

Side by Side Diff: media/media.gyp

Issue 1658303002: Create abstract interface for media::Pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix FakeMediaSource includes. Created 4 years, 10 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
« no previous file with comments | « media/filters/gpu_video_decoder.cc ('k') | media/renderers/video_renderer_impl.cc » ('j') | 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 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 'base/mime_util.h', 358 'base/mime_util.h',
359 'base/mime_util_internal.cc', 359 'base/mime_util_internal.cc',
360 'base/mime_util_internal.h', 360 'base/mime_util_internal.h',
361 'base/moving_average.cc', 361 'base/moving_average.cc',
362 'base/moving_average.h', 362 'base/moving_average.h',
363 'base/multi_channel_resampler.cc', 363 'base/multi_channel_resampler.cc',
364 'base/multi_channel_resampler.h', 364 'base/multi_channel_resampler.h',
365 'base/null_video_sink.cc', 365 'base/null_video_sink.cc',
366 'base/null_video_sink.h', 366 'base/null_video_sink.h',
367 'base/output_device.h', 367 'base/output_device.h',
368 'base/pipeline.cc',
369 'base/pipeline.h', 368 'base/pipeline.h',
369 'base/pipeline_impl.cc',
370 'base/pipeline_impl.h',
370 'base/pipeline_status.h', 371 'base/pipeline_status.h',
371 'base/player_tracker.cc', 372 'base/player_tracker.cc',
372 'base/player_tracker.h', 373 'base/player_tracker.h',
373 'base/ranges.cc', 374 'base/ranges.cc',
374 'base/ranges.h', 375 'base/ranges.h',
375 'base/renderer.cc', 376 'base/renderer.cc',
376 'base/renderer.h', 377 'base/renderer.h',
377 'base/renderer_factory.cc', 378 'base/renderer_factory.cc',
378 'base/renderer_factory.h', 379 'base/renderer_factory.h',
379 'base/sample_format.cc', 380 'base/sample_format.cc',
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 'base/djb2_unittest.cc', 1257 'base/djb2_unittest.cc',
1257 'base/fake_demuxer_stream_unittest.cc', 1258 'base/fake_demuxer_stream_unittest.cc',
1258 'base/gmock_callback_support_unittest.cc', 1259 'base/gmock_callback_support_unittest.cc',
1259 'base/key_systems_unittest.cc', 1260 'base/key_systems_unittest.cc',
1260 'base/mac/video_frame_mac_unittests.cc', 1261 'base/mac/video_frame_mac_unittests.cc',
1261 'base/media_file_checker_unittest.cc', 1262 'base/media_file_checker_unittest.cc',
1262 'base/mime_util_unittest.cc', 1263 'base/mime_util_unittest.cc',
1263 'base/moving_average_unittest.cc', 1264 'base/moving_average_unittest.cc',
1264 'base/multi_channel_resampler_unittest.cc', 1265 'base/multi_channel_resampler_unittest.cc',
1265 'base/null_video_sink_unittest.cc', 1266 'base/null_video_sink_unittest.cc',
1266 'base/pipeline_unittest.cc', 1267 'base/pipeline_impl_unittest.cc',
1267 'base/ranges_unittest.cc', 1268 'base/ranges_unittest.cc',
1268 'base/run_all_unittests.cc', 1269 'base/run_all_unittests.cc',
1269 'base/seekable_buffer_unittest.cc', 1270 'base/seekable_buffer_unittest.cc',
1270 'base/serial_runner_unittest.cc', 1271 'base/serial_runner_unittest.cc',
1271 'base/sinc_resampler_unittest.cc', 1272 'base/sinc_resampler_unittest.cc',
1272 'base/stream_parser_unittest.cc', 1273 'base/stream_parser_unittest.cc',
1273 'base/text_ranges_unittest.cc', 1274 'base/text_ranges_unittest.cc',
1274 'base/text_renderer_unittest.cc', 1275 'base/text_renderer_unittest.cc',
1275 'base/time_delta_interpolator_unittest.cc', 1276 'base/time_delta_interpolator_unittest.cc',
1276 'base/user_input_monitor_unittest.cc', 1277 'base/user_input_monitor_unittest.cc',
(...skipping 899 matching lines...) Expand 10 before | Expand all | Expand 10 after
2176 'dependencies': [ 2177 'dependencies': [
2177 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2178 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2178 ], 2179 ],
2179 }], 2180 }],
2180 ], 2181 ],
2181 }, 2182 },
2182 ], 2183 ],
2183 }], 2184 }],
2184 ], 2185 ],
2185 } 2186 }
OLDNEW
« no previous file with comments | « media/filters/gpu_video_decoder.cc ('k') | media/renderers/video_renderer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698