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

Side by Side Diff: media/media.gyp

Issue 237353007: Refactor VideoRendererImpl to use VideoFrameScheduler. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pretty much done Created 6 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 | 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 1242 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 'base/mock_audio_renderer_sink.cc', 1253 'base/mock_audio_renderer_sink.cc',
1254 'base/mock_audio_renderer_sink.h', 1254 'base/mock_audio_renderer_sink.h',
1255 'base/mock_demuxer_host.cc', 1255 'base/mock_demuxer_host.cc',
1256 'base/mock_demuxer_host.h', 1256 'base/mock_demuxer_host.h',
1257 'base/mock_filters.cc', 1257 'base/mock_filters.cc',
1258 'base/mock_filters.h', 1258 'base/mock_filters.h',
1259 'base/test_data_util.cc', 1259 'base/test_data_util.cc',
1260 'base/test_data_util.h', 1260 'base/test_data_util.h',
1261 'base/test_helpers.cc', 1261 'base/test_helpers.cc',
1262 'base/test_helpers.h', 1262 'base/test_helpers.h',
1263 'filters/clockless_video_frame_scheduler.cc',
1264 'filters/clockless_video_frame_scheduler.h',
1263 'filters/mock_gpu_video_accelerator_factories.cc', 1265 'filters/mock_gpu_video_accelerator_factories.cc',
1264 'filters/mock_gpu_video_accelerator_factories.h', 1266 'filters/mock_gpu_video_accelerator_factories.h',
1267 'filters/test_video_frame_scheduler.cc',
1268 'filters/test_video_frame_scheduler.h',
1265 'video/capture/mock_video_capture_event_handler.cc', 1269 'video/capture/mock_video_capture_event_handler.cc',
1266 'video/capture/mock_video_capture_event_handler.h', 1270 'video/capture/mock_video_capture_event_handler.h',
1267 'video/mock_video_decode_accelerator.cc', 1271 'video/mock_video_decode_accelerator.cc',
1268 'video/mock_video_decode_accelerator.h', 1272 'video/mock_video_decode_accelerator.h',
1269 ], 1273 ],
1270 }, 1274 },
1271 { 1275 {
1272 # Minimal target for NaCl and other renderer side media clients which 1276 # Minimal target for NaCl and other renderer side media clients which
1273 # only need to send audio data across the shared memory to the browser 1277 # only need to send audio data across the shared memory to the browser
1274 # process. 1278 # process.
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 ], 1685 ],
1682 }], 1686 }],
1683 ], 1687 ],
1684 }], 1688 }],
1685 ], 1689 ],
1686 }, 1690 },
1687 ], 1691 ],
1688 }], 1692 }],
1689 ], 1693 ],
1690 } 1694 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698