Chromium Code Reviews| 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': [ | |
|
grt (UTC plus 2)
2014/07/30 15:05:36
'includes': [
'../build/win_precompile.gypi',
grt (UTC plus 2)
2014/07/30 15:05:36
'variables': {
'chromium_code': 1,
},
jackhou1
2014/07/31 03:24:55
Done.
jackhou1
2014/07/31 03:24:55
Done.
| |
| 7 # TODO(jackhou): Add a version resource (using | |
| 8 # version_resource_rules.gypi). | |
| 9 { | |
|
grt (UTC plus 2)
2014/07/30 15:05:36
put this in a 'conditions': [['OS="win"', {}]] blo
jackhou1
2014/07/31 03:24:55
Done.
| |
| 10 'target_name': 'app_installer', | |
| 11 'type': 'executable', | |
| 12 'dependencies': [ | |
| 13 '../base/base.gyp:base', | |
| 14 '../chrome/chrome.gyp:installer_util', | |
| 15 '../chrome/chrome.gyp:installer_util_strings', | |
| 16 '../chrome/chrome.gyp:launcher_support', | |
| 17 '../third_party/omaha/omaha.gyp:omaha_extractor', | |
| 18 ], | |
| 19 'include_dirs': [ | |
| 20 '..', | |
| 21 '<(INTERMEDIATE_DIR)', | |
| 22 ], | |
| 23 'sources': [ | |
| 24 'app_installer_main.cc', | |
|
grt (UTC plus 2)
2014/07/30 15:05:36
consider putting this in a win/ sub-directory. thi
jackhou1
2014/07/31 03:24:55
Done.
| |
| 25 ], | |
| 26 'msvs_settings': { | |
| 27 'VCLinkerTool': { | |
| 28 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | |
| 29 }, | |
| 30 'VCManifestTool': { | |
| 31 'AdditionalManifestFiles': [ | |
| 32 'app_installer.exe.manifest', | |
| 33 ], | |
| 34 }, | |
| 35 }, | |
| 36 }, | |
| 37 ], | |
| 38 } | |
| OLD | NEW |