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 14 matching lines...) Expand all Loading... |
25 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 25 '../third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
26 ], | 26 ], |
27 'include_dirs': [ | 27 'include_dirs': [ |
28 '..', | 28 '..', |
29 ], | 29 ], |
30 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', | 30 'msvs_guid': '6AE76406-B03B-11DD-94B1-80B556D89593', |
31 'sources': [ | 31 'sources': [ |
32 'audio/audio_output.h', | 32 'audio/audio_output.h', |
33 'audio/audio_util.cc', | 33 'audio/audio_util.cc', |
34 'audio/audio_util.h', | 34 'audio/audio_util.h', |
| 35 'audio/fake_audio_output_stream.cc', |
| 36 'audio/fake_audio_output_stream.h', |
35 'audio/linux/audio_manager_linux.cc', | 37 'audio/linux/audio_manager_linux.cc', |
36 'audio/linux/audio_manager_linux.h', | 38 'audio/linux/audio_manager_linux.h', |
37 'audio/linux/alsa_output.cc', | 39 'audio/linux/alsa_output.cc', |
38 'audio/linux/alsa_output.h', | 40 'audio/linux/alsa_output.h', |
39 'audio/mac/audio_manager_mac.cc', | 41 'audio/mac/audio_manager_mac.cc', |
40 'audio/mac/audio_manager_mac.h', | 42 'audio/mac/audio_manager_mac.h', |
41 'audio/mac/audio_output_mac.cc', | 43 'audio/mac/audio_output_mac.cc', |
42 'audio/mac/audio_output_mac.h', | 44 'audio/mac/audio_output_mac.h', |
43 'audio/simple_sources.cc', | 45 'audio/simple_sources.cc', |
44 'audio/simple_sources.h', | 46 'audio/simple_sources.h', |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 'msvs_settings': { | 249 'msvs_settings': { |
248 'VCLinkerTool': { | 250 'VCLinkerTool': { |
249 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 251 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
250 }, | 252 }, |
251 }, | 253 }, |
252 }, | 254 }, |
253 ], | 255 ], |
254 }], | 256 }], |
255 ], | 257 ], |
256 } | 258 } |
OLD | NEW |