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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 { | 201 { |
202 'target_name': 'wav_ola_test', | 202 'target_name': 'wav_ola_test', |
203 'type': 'executable', | 203 'type': 'executable', |
204 'dependencies': [ | 204 'dependencies': [ |
205 'media', | 205 'media', |
206 ], | 206 ], |
207 'sources': [ | 207 'sources': [ |
208 'tools/wav_ola_test.cc' | 208 'tools/wav_ola_test.cc' |
209 ], | 209 ], |
210 }, | 210 }, |
| 211 { |
| 212 'target_name': 'qt_faststart', |
| 213 'type': 'executable', |
| 214 'sources': [ |
| 215 'tools/qt-faststart.c' |
| 216 ], |
| 217 }, |
211 ], | 218 ], |
212 'conditions': [ | 219 'conditions': [ |
213 ['OS=="win"', { | 220 ['OS=="win"', { |
214 'targets': [ | 221 'targets': [ |
215 { | 222 { |
216 'target_name': 'media_player', | 223 'target_name': 'media_player', |
217 'type': 'executable', | 224 'type': 'executable', |
218 'dependencies': [ | 225 'dependencies': [ |
219 'media', | 226 'media', |
220 '../base/base.gyp:base', | 227 '../base/base.gyp:base', |
(...skipping 19 matching lines...) Expand all Loading... |
240 'msvs_settings': { | 247 'msvs_settings': { |
241 'VCLinkerTool': { | 248 'VCLinkerTool': { |
242 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 249 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
243 }, | 250 }, |
244 }, | 251 }, |
245 }, | 252 }, |
246 ], | 253 ], |
247 }], | 254 }], |
248 ], | 255 ], |
249 } | 256 } |
OLD | NEW |