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

Side by Side Diff: media/media.gyp

Issue 9826023: Merge AudioRendererImpl and AudioRendererBase; add NullAudioSink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win build Created 8 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
« no previous file with comments | « media/filters/pipeline_integration_test_base.cc ('k') | media/tools/player_wtl/movie.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 PulseAudio library. 8 # Override to dynamically link the PulseAudio library.
9 'use_pulseaudio%': 0, 9 'use_pulseaudio%': 0,
10 # Override to dynamically link the cras (ChromeOS audio) library. 10 # Override to dynamically link the cras (ChromeOS audio) library.
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'audio/mac/audio_input_mac.cc', 86 'audio/mac/audio_input_mac.cc',
87 'audio/mac/audio_input_mac.h', 87 'audio/mac/audio_input_mac.h',
88 'audio/mac/audio_low_latency_input_mac.cc', 88 'audio/mac/audio_low_latency_input_mac.cc',
89 'audio/mac/audio_low_latency_input_mac.h', 89 'audio/mac/audio_low_latency_input_mac.h',
90 'audio/mac/audio_low_latency_output_mac.cc', 90 'audio/mac/audio_low_latency_output_mac.cc',
91 'audio/mac/audio_low_latency_output_mac.h', 91 'audio/mac/audio_low_latency_output_mac.h',
92 'audio/mac/audio_manager_mac.cc', 92 'audio/mac/audio_manager_mac.cc',
93 'audio/mac/audio_manager_mac.h', 93 'audio/mac/audio_manager_mac.h',
94 'audio/mac/audio_output_mac.cc', 94 'audio/mac/audio_output_mac.cc',
95 'audio/mac/audio_output_mac.h', 95 'audio/mac/audio_output_mac.h',
96 'audio/null_audio_sink.cc',
97 'audio/null_audio_sink.h',
96 'audio/pulse/pulse_output.cc', 98 'audio/pulse/pulse_output.cc',
97 'audio/pulse/pulse_output.h', 99 'audio/pulse/pulse_output.h',
98 'audio/simple_sources.cc', 100 'audio/simple_sources.cc',
99 'audio/simple_sources.h', 101 'audio/simple_sources.h',
100 'audio/win/audio_low_latency_input_win.cc', 102 'audio/win/audio_low_latency_input_win.cc',
101 'audio/win/audio_low_latency_input_win.h', 103 'audio/win/audio_low_latency_input_win.h',
102 'audio/win/audio_low_latency_output_win.cc', 104 'audio/win/audio_low_latency_output_win.cc',
103 'audio/win/audio_low_latency_output_win.h', 105 'audio/win/audio_low_latency_output_win.h',
104 'audio/win/audio_manager_win.cc', 106 'audio/win/audio_manager_win.cc',
105 'audio/win/audio_manager_win.h', 107 'audio/win/audio_manager_win.h',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'filters/ffmpeg_glue.cc', 204 'filters/ffmpeg_glue.cc',
203 'filters/ffmpeg_glue.h', 205 'filters/ffmpeg_glue.h',
204 'filters/ffmpeg_video_decoder.cc', 206 'filters/ffmpeg_video_decoder.cc',
205 'filters/ffmpeg_video_decoder.h', 207 'filters/ffmpeg_video_decoder.h',
206 'filters/file_data_source.cc', 208 'filters/file_data_source.cc',
207 'filters/file_data_source.h', 209 'filters/file_data_source.h',
208 'filters/gpu_video_decoder.cc', 210 'filters/gpu_video_decoder.cc',
209 'filters/gpu_video_decoder.h', 211 'filters/gpu_video_decoder.h',
210 'filters/in_memory_url_protocol.cc', 212 'filters/in_memory_url_protocol.cc',
211 'filters/in_memory_url_protocol.h', 213 'filters/in_memory_url_protocol.h',
212 'filters/null_audio_renderer.cc',
213 'filters/null_audio_renderer.h',
214 'filters/video_frame_generator.cc', 214 'filters/video_frame_generator.cc',
215 'filters/video_frame_generator.h', 215 'filters/video_frame_generator.h',
216 'filters/video_renderer_base.cc', 216 'filters/video_renderer_base.cc',
217 'filters/video_renderer_base.h', 217 'filters/video_renderer_base.h',
218 'video/capture/fake_video_capture_device.cc', 218 'video/capture/fake_video_capture_device.cc',
219 'video/capture/fake_video_capture_device.h', 219 'video/capture/fake_video_capture_device.h',
220 'video/capture/linux/video_capture_device_linux.cc', 220 'video/capture/linux/video_capture_device_linux.cc',
221 'video/capture/linux/video_capture_device_linux.h', 221 'video/capture/linux/video_capture_device_linux.h',
222 'video/capture/mac/video_capture_device_mac.h', 222 'video/capture/mac/video_capture_device_mac.h',
223 'video/capture/mac/video_capture_device_mac.mm', 223 'video/capture/mac/video_capture_device_mac.mm',
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 999 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
1000 ], 1000 ],
1001 'sources': [ 1001 'sources': [
1002 'tools/media_bench/media_bench.cc', 1002 'tools/media_bench/media_bench.cc',
1003 ], 1003 ],
1004 }, 1004 },
1005 ], 1005 ],
1006 }] 1006 }]
1007 ], 1007 ],
1008 } 1008 }
OLDNEW
« no previous file with comments | « media/filters/pipeline_integration_test_base.cc ('k') | media/tools/player_wtl/movie.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698