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

Side by Side Diff: media/media.gyp

Issue 1809093003: Moving SwitchOutputDevice out of OutputDevice interface, eliminating OutputDevice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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/blink/webmediaplayer_util.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 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 'base/mime_util.cc', 378 'base/mime_util.cc',
379 'base/mime_util.h', 379 'base/mime_util.h',
380 'base/mime_util_internal.cc', 380 'base/mime_util_internal.cc',
381 'base/mime_util_internal.h', 381 'base/mime_util_internal.h',
382 'base/moving_average.cc', 382 'base/moving_average.cc',
383 'base/moving_average.h', 383 'base/moving_average.h',
384 'base/multi_channel_resampler.cc', 384 'base/multi_channel_resampler.cc',
385 'base/multi_channel_resampler.h', 385 'base/multi_channel_resampler.h',
386 'base/null_video_sink.cc', 386 'base/null_video_sink.cc',
387 'base/null_video_sink.h', 387 'base/null_video_sink.h',
388 'base/output_device.h', 388 'base/output_device_info.cc',
389 'base/output_device_info.h',
389 'base/pipeline.h', 390 'base/pipeline.h',
390 'base/pipeline_impl.cc', 391 'base/pipeline_impl.cc',
391 'base/pipeline_impl.h', 392 'base/pipeline_impl.h',
392 'base/pipeline_status.h', 393 'base/pipeline_status.h',
393 'base/player_tracker.cc', 394 'base/player_tracker.cc',
394 'base/player_tracker.h', 395 'base/player_tracker.h',
395 'base/ranges.cc', 396 'base/ranges.cc',
396 'base/ranges.h', 397 'base/ranges.h',
397 'base/renderer.cc', 398 'base/renderer.cc',
398 'base/renderer.h', 399 'base/renderer.h',
(...skipping 1141 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 'audio/test_audio_input_controller_factory.cc', 1541 'audio/test_audio_input_controller_factory.cc',
1541 'audio/test_audio_input_controller_factory.h', 1542 'audio/test_audio_input_controller_factory.h',
1542 'base/fake_audio_render_callback.cc', 1543 'base/fake_audio_render_callback.cc',
1543 'base/fake_audio_render_callback.h', 1544 'base/fake_audio_render_callback.h',
1544 'base/fake_audio_renderer_sink.cc', 1545 'base/fake_audio_renderer_sink.cc',
1545 'base/fake_audio_renderer_sink.h', 1546 'base/fake_audio_renderer_sink.h',
1546 'base/fake_demuxer_stream.cc', 1547 'base/fake_demuxer_stream.cc',
1547 'base/fake_demuxer_stream.h', 1548 'base/fake_demuxer_stream.h',
1548 'base/fake_media_resources.cc', 1549 'base/fake_media_resources.cc',
1549 'base/fake_media_resources.h', 1550 'base/fake_media_resources.h',
1550 'base/fake_output_device.cc',
1551 'base/fake_output_device.h',
1552 'base/fake_single_thread_task_runner.cc', 1551 'base/fake_single_thread_task_runner.cc',
1553 'base/fake_single_thread_task_runner.h', 1552 'base/fake_single_thread_task_runner.h',
1554 'base/fake_text_track_stream.cc', 1553 'base/fake_text_track_stream.cc',
1555 'base/fake_text_track_stream.h', 1554 'base/fake_text_track_stream.h',
1556 'base/gmock_callback_support.h', 1555 'base/gmock_callback_support.h',
1557 'base/mock_audio_renderer_sink.cc', 1556 'base/mock_audio_renderer_sink.cc',
1558 'base/mock_audio_renderer_sink.h', 1557 'base/mock_audio_renderer_sink.h',
1559 'base/mock_demuxer_host.cc', 1558 'base/mock_demuxer_host.cc',
1560 'base/mock_demuxer_host.h', 1559 'base/mock_demuxer_host.h',
1561 'base/mock_filters.cc', 1560 'base/mock_filters.cc',
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
2067 'dependencies': [ 2066 'dependencies': [
2068 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2067 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2069 ], 2068 ],
2070 }], 2069 }],
2071 ], 2070 ],
2072 }, 2071 },
2073 ], 2072 ],
2074 }], 2073 }],
2075 ], 2074 ],
2076 } 2075 }
OLDNEW
« no previous file with comments | « media/blink/webmediaplayer_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698