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 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'conditions': [ |
| 10 ['OS=="win"', { |
| 11 'targets': [ |
| 12 # TODO(jackhou): Add a version resource (using |
| 13 # version_resource_rules.gypi). |
| 14 { |
| 15 'target_name': 'app_installer', |
| 16 'type': 'executable', |
| 17 'dependencies': [ |
| 18 '../base/base.gyp:base', |
| 19 '../chrome/chrome.gyp:installer_util', |
| 20 '../chrome/chrome.gyp:installer_util_strings', |
| 21 '../chrome/chrome.gyp:launcher_support', |
| 22 '../chrome/common_constants.gyp:common_constants', |
| 23 '../third_party/omaha/omaha.gyp:omaha_extractor', |
| 24 ], |
| 25 'includes': [ |
| 26 '../build/win_precompile.gypi', |
| 27 ], |
| 28 'include_dirs': [ |
| 29 '..', |
| 30 '<(INTERMEDIATE_DIR)', |
| 31 ], |
| 32 'sources': [ |
| 33 'win/app_installer_main.cc', |
| 34 ], |
| 35 'msvs_settings': { |
| 36 'VCLinkerTool': { |
| 37 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 38 }, |
| 39 'VCManifestTool': { |
| 40 'AdditionalManifestFiles': [ |
| 41 'win/app_installer.exe.manifest', |
| 42 ], |
| 43 }, |
| 44 }, |
| 45 }, |
| 46 ], |
| 47 }], |
| 48 ], |
| 49 } |
OLD | NEW |