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

Side by Side Diff: media/media.gyp

Issue 155193: BufferQueue class to hide audio data micromanagement from scaling algorithms. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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/base/buffer_queue_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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
(...skipping 26 matching lines...) Expand all
37 'audio/mac/audio_manager_mac.cc', 37 'audio/mac/audio_manager_mac.cc',
38 'audio/mac/audio_manager_mac.h', 38 'audio/mac/audio_manager_mac.h',
39 'audio/mac/audio_output_mac.cc', 39 'audio/mac/audio_output_mac.cc',
40 'audio/mac/audio_output_mac.h', 40 'audio/mac/audio_output_mac.h',
41 'audio/simple_sources.cc', 41 'audio/simple_sources.cc',
42 'audio/simple_sources.h', 42 'audio/simple_sources.h',
43 'audio/win/audio_manager_win.h', 43 'audio/win/audio_manager_win.h',
44 'audio/win/audio_output_win.cc', 44 'audio/win/audio_output_win.cc',
45 'audio/win/waveout_output_win.cc', 45 'audio/win/waveout_output_win.cc',
46 'audio/win/waveout_output_win.h', 46 'audio/win/waveout_output_win.h',
47 'base/buffer_queue.h',
48 'base/buffer_queue.cc',
47 'base/buffers.h', 49 'base/buffers.h',
48 'base/data_buffer.cc', 50 'base/data_buffer.cc',
49 'base/data_buffer.h', 51 'base/data_buffer.h',
50 'base/factory.h', 52 'base/factory.h',
51 'base/filter_host.h', 53 'base/filter_host.h',
52 'base/filter_host_impl.cc', 54 'base/filter_host_impl.cc',
53 'base/filter_host_impl.h', 55 'base/filter_host_impl.h',
54 'base/filters.h', 56 'base/filters.h',
55 'base/media_posix.cc', 57 'base/media_posix.cc',
56 'base/media_win.cc', 58 'base/media_win.cc',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 'media', 145 'media',
144 '../base/base.gyp:base', 146 '../base/base.gyp:base',
145 '../testing/gmock.gyp:gmock', 147 '../testing/gmock.gyp:gmock',
146 '../testing/gtest.gyp:gtest', 148 '../testing/gtest.gyp:gtest',
147 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 149 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
148 ], 150 ],
149 'sources': [ 151 'sources': [
150 'audio/win/audio_output_win_unittest.cc', 152 'audio/win/audio_output_win_unittest.cc',
151 'audio/mac/audio_output_mac_unittest.cc', 153 'audio/mac/audio_output_mac_unittest.cc',
152 'audio/simple_sources_unittest.cc', 154 'audio/simple_sources_unittest.cc',
155 'base/buffer_queue_unittest.cc',
153 'base/data_buffer_unittest.cc', 156 'base/data_buffer_unittest.cc',
154 'base/mock_ffmpeg.cc', 157 'base/mock_ffmpeg.cc',
155 'base/mock_ffmpeg.h', 158 'base/mock_ffmpeg.h',
156 'base/mock_filter_host.h', 159 'base/mock_filter_host.h',
157 'base/mock_filters.h', 160 'base/mock_filters.h',
158 'base/mock_media_filters.h', 161 'base/mock_media_filters.h',
159 'base/mock_pipeline.h', 162 'base/mock_pipeline.h',
160 'base/mock_reader.h', 163 'base/mock_reader.h',
161 'base/pipeline_impl_unittest.cc', 164 'base/pipeline_impl_unittest.cc',
162 'base/run_all_unittests.cc', 165 'base/run_all_unittests.cc',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 'msvs_settings': { 238 'msvs_settings': {
236 'VCLinkerTool': { 239 'VCLinkerTool': {
237 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 240 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
238 }, 241 },
239 }, 242 },
240 }, 243 },
241 ], 244 ],
242 }], 245 }],
243 ], 246 ],
244 } 247 }
OLDNEW
« no previous file with comments | « media/base/buffer_queue_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698