OLD | NEW |
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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 'base/yuv_convert.cc', | 69 'base/yuv_convert.cc', |
70 'base/yuv_convert.h', | 70 'base/yuv_convert.h', |
71 'base/yuv_row_win.cc', | 71 'base/yuv_row_win.cc', |
72 'base/yuv_row_mac.cc', | 72 'base/yuv_row_mac.cc', |
73 'base/yuv_row_linux.cc', | 73 'base/yuv_row_linux.cc', |
74 'base/yuv_row.h', | 74 'base/yuv_row.h', |
75 'filters/audio_renderer_algorithm_base.cc', | 75 'filters/audio_renderer_algorithm_base.cc', |
76 'filters/audio_renderer_algorithm_base.h', | 76 'filters/audio_renderer_algorithm_base.h', |
77 'filters/audio_renderer_algorithm_default.cc', | 77 'filters/audio_renderer_algorithm_default.cc', |
78 'filters/audio_renderer_algorithm_default.h', | 78 'filters/audio_renderer_algorithm_default.h', |
| 79 'filters/audio_renderer_algorithm_ola.cc', |
| 80 'filters/audio_renderer_algorithm_ola.h', |
79 'filters/audio_renderer_base.cc', | 81 'filters/audio_renderer_base.cc', |
80 'filters/audio_renderer_base.h', | 82 'filters/audio_renderer_base.h', |
81 'filters/audio_renderer_impl.cc', | 83 'filters/audio_renderer_impl.cc', |
82 'filters/audio_renderer_impl.h', | 84 'filters/audio_renderer_impl.h', |
83 'filters/decoder_base.h', | 85 'filters/decoder_base.h', |
84 'filters/ffmpeg_audio_decoder.cc', | 86 'filters/ffmpeg_audio_decoder.cc', |
85 'filters/ffmpeg_audio_decoder.h', | 87 'filters/ffmpeg_audio_decoder.h', |
86 'filters/ffmpeg_common.cc', | 88 'filters/ffmpeg_common.cc', |
87 'filters/ffmpeg_common.h', | 89 'filters/ffmpeg_common.h', |
88 'filters/ffmpeg_demuxer.cc', | 90 'filters/ffmpeg_demuxer.cc', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 'msvs_guid': '45BC4F87-4604-4962-A751-7C7B29A080BF', | 187 'msvs_guid': '45BC4F87-4604-4962-A751-7C7B29A080BF', |
186 'dependencies': [ | 188 'dependencies': [ |
187 'media', | 189 'media', |
188 '../base/base.gyp:base', | 190 '../base/base.gyp:base', |
189 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 191 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
190 ], | 192 ], |
191 'sources': [ | 193 'sources': [ |
192 'bench/bench.cc', | 194 'bench/bench.cc', |
193 ], | 195 ], |
194 }, | 196 }, |
| 197 { |
| 198 'target_name': 'wav_ola_test', |
| 199 'type': 'executable', |
| 200 'dependencies': [ |
| 201 'media', |
| 202 ], |
| 203 'sources': [ |
| 204 'tools/wav_ola_test.cc' |
| 205 ], |
| 206 }, |
195 ], | 207 ], |
196 'conditions': [ | 208 'conditions': [ |
197 ['OS=="win"', { | 209 ['OS=="win"', { |
198 'targets': [ | 210 'targets': [ |
199 { | 211 { |
200 'target_name': 'media_player', | 212 'target_name': 'media_player', |
201 'type': 'executable', | 213 'type': 'executable', |
202 'dependencies': [ | 214 'dependencies': [ |
203 'media', | 215 'media', |
204 '../base/base.gyp:base', | 216 '../base/base.gyp:base', |
(...skipping 19 matching lines...) Expand all Loading... |
224 'msvs_settings': { | 236 'msvs_settings': { |
225 'VCLinkerTool': { | 237 'VCLinkerTool': { |
226 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 238 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
227 }, | 239 }, |
228 }, | 240 }, |
229 }, | 241 }, |
230 ], | 242 ], |
231 }], | 243 }], |
232 ], | 244 ], |
233 } | 245 } |
OLD | NEW |