Chromium Code Reviews| Index: chrome/installer/installer_tools.gyp |
| =================================================================== |
| --- chrome/installer/installer_tools.gyp (revision 0) |
| +++ chrome/installer/installer_tools.gyp (revision 0) |
| @@ -0,0 +1,49 @@ |
| +{ |
| + 'variables': { |
| + 'version_py': '../../chrome/tools/build/version.py', |
|
robertshield
2011/02/14 14:09:11
I vaguely remember gyp having a pre-defined variab
grt (UTC plus 2)
2011/02/14 15:48:03
Cool. Done.
|
| + 'version_path': '../../chrome/VERSION', |
| + 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', |
| + # 'branding_dir' is set in the 'conditions' section at the bottom. |
| + 'msvs_use_common_release': 0, |
| + 'msvs_use_common_linker_extras': 0, |
| + }, |
| + 'conditions': [ |
| + ['OS=="win"', { |
| + 'targets': [ |
| + { |
| + 'target_name': 'validate_installation', |
| + 'msvs_guid': '7CC08DA8-E9CA-4573-A8C4-E7F0D0CF8EBA', |
| + 'type': 'executable', |
| + 'dependencies': [ |
| + '../chrome.gyp:common_constants', |
| + '../chrome.gyp:installer_util', |
| + '../chrome.gyp:installer_util_strings', |
| + ], |
| + 'include_dirs': [ |
| + '../..', |
| + ], |
| + 'sources': [ |
| + 'tools/validate_installation_main.cc', |
| + 'tools/validate_installation.rc', |
| + 'tools/validate_installation_resource.h', |
| + ], |
| + }, |
| + ], |
| + }], |
| + [ 'branding == "Chrome"', { |
| + 'variables': { |
| + 'branding_dir': '../app/theme/google_chrome', |
| + }, |
| + }, { # else branding!="Chrome" |
| + 'variables': { |
| + 'branding_dir': '../app/theme/chromium', |
| + }, |
| + }], |
| + ], |
| +} |
| + |
| +# Local Variables: |
| +# tab-width:2 |
| +# indent-tabs-mode:nil |
| +# End: |
| +# vim: set expandtab tabstop=2 shiftwidth=2: |
| Property changes on: chrome\installer\installer_tools.gyp |
| ___________________________________________________________________ |
| Added: svn:eol-style |
| + LF |