OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 # This is the app shim on Windows. It is a small binary that simply runs |
| 8 # Chrome, passing along any command-line arguments. |
| 9 { |
| 10 'target_name': 'app_shim', |
| 11 'type': 'executable', |
| 12 'dependencies': [ |
| 13 'launcher_support', |
| 14 '../base/base.gyp:base', |
| 15 ], |
| 16 'sources': [ |
| 17 'win/app_shim.rc', |
| 18 'win/app_shim_main.cc', |
| 19 ], |
| 20 'msvs_settings': { |
| 21 'VCLinkerTool': { |
| 22 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 23 }, |
| 24 'VCManifestTool': { |
| 25 'AdditionalManifestFiles': [ |
| 26 'app_shim/win/app_shim.exe.manifest', |
| 27 ], |
| 28 }, |
| 29 }, |
| 30 }, |
| 31 ], # targets |
| 32 } |
OLD | NEW |