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 'includes': [ | 6 'includes': [ |
7 '../build/common.gypi', | 7 '../build/common.gypi', |
8 ], | 8 ], |
9 'conditions': [ | 9 'conditions': [ |
10 [ 'OS=="win"', { | 10 [ 'OS=="win"', { |
(...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 | 276 |
277 # Precompiled headers. | 277 # Precompiled headers. |
278 'sandbox_poc/stdafx.cc', | 278 'sandbox_poc/stdafx.cc', |
279 'sandbox_poc/stdafx.h', | 279 'sandbox_poc/stdafx.h', |
280 ], | 280 ], |
281 'link_settings': { | 281 'link_settings': { |
282 'libraries': [ | 282 'libraries': [ |
283 '-lcomctl32.lib', | 283 '-lcomctl32.lib', |
284 ], | 284 ], |
285 }, | 285 }, |
| 286 'msvs_settings': { |
| 287 'VCLinkerTool': { |
| 288 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 289 }, |
| 290 }, |
286 'configurations': { | 291 'configurations': { |
287 'Debug': { | 292 'Debug': { |
288 'msvs_precompiled_header': 'sandbox_poc/stdafx.h', | 293 'msvs_precompiled_header': 'sandbox_poc/stdafx.h', |
289 'msvs_precompiled_source': 'sandbox_poc/stdafx.cc', | 294 'msvs_precompiled_source': 'sandbox_poc/stdafx.cc', |
290 }, | 295 }, |
291 }, | 296 }, |
292 }, | 297 }, |
293 { | 298 { |
294 'target_name': 'pocdll', | 299 'target_name': 'pocdll', |
295 'type': 'shared_library', | 300 'type': 'shared_library', |
(...skipping 23 matching lines...) Expand all Loading... |
319 'Debug': { | 324 'Debug': { |
320 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', | 325 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', |
321 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', | 326 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', |
322 }, | 327 }, |
323 }, | 328 }, |
324 }, | 329 }, |
325 ], | 330 ], |
326 }], | 331 }], |
327 ], | 332 ], |
328 } | 333 } |
OLD | NEW |