OLD | NEW |
1 { | 1 { |
2 'variables': { | 2 'variables': { |
3 'version_py': '../../chrome/tools/build/version.py', | 3 'version_py': '../../chrome/tools/build/version.py', |
4 'version_path': '../../chrome/VERSION', | 4 'version_path': '../../chrome/VERSION', |
5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', | 5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', |
6 # 'branding_dir' is set in the 'conditions' section at the bottom. | 6 # 'branding_dir' is set in the 'conditions' section at the bottom. |
7 'msvs_use_common_release': 0, | 7 'msvs_use_common_release': 0, |
8 'msvs_use_common_linker_extras': 0, | 8 'msvs_use_common_linker_extras': 0, |
9 }, | 9 }, |
10 'includes': [ | 10 'includes': [ |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 }, | 79 }, |
80 }, | 80 }, |
81 'Release': { | 81 'Release': { |
82 'msvs_props': ['mini_installer/mini_installer_release.vsprops'], | 82 'msvs_props': ['mini_installer/mini_installer_release.vsprops'], |
83 'msvs_settings': { | 83 'msvs_settings': { |
84 'VCCLCompilerTool': { | 84 'VCCLCompilerTool': { |
85 'BasicRuntimeChecks': '0', | 85 'BasicRuntimeChecks': '0', |
86 }, | 86 }, |
87 }, | 87 }, |
88 }, | 88 }, |
| 89 'conditions': [ |
| 90 ['OS=="win"', { |
| 91 # TODO(bradnelson): add a gyp mechanism to make this more |
| 92 # graceful. |
| 93 'Purify': { |
| 94 'msvs_props': [ |
| 95 'mini_installer/mini_installer_release.vsprops' |
| 96 ], |
| 97 'msvs_settings': { |
| 98 'VCCLCompilerTool': { |
| 99 'BasicRuntimeChecks': '0', |
| 100 }, |
| 101 }, |
| 102 }, |
| 103 'Release - no tcmalloc': { |
| 104 'msvs_props': [ |
| 105 'mini_installer/mini_installer_release.vsprops' |
| 106 ], |
| 107 'msvs_settings': { |
| 108 'VCCLCompilerTool': { |
| 109 'BasicRuntimeChecks': '0', |
| 110 }, |
| 111 }, |
| 112 }, |
| 113 }], |
| 114 ], |
89 }, | 115 }, |
90 'rules': [ | 116 'rules': [ |
91 { | 117 { |
92 'rule_name': 'mini_installer_version', | 118 'rule_name': 'mini_installer_version', |
93 'extension': 'version', | 119 'extension': 'version', |
94 'variables': { | 120 'variables': { |
95 'template_input_path': 'mini_installer/mini_installer_exe_versio
n.rc.version', | 121 'template_input_path': 'mini_installer/mini_installer_exe_versio
n.rc.version', |
96 }, | 122 }, |
97 'inputs': [ | 123 'inputs': [ |
98 '<(template_input_path)', | 124 '<(template_input_path)', |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 'variables': { | 198 'variables': { |
173 'branding_dir': '../app/theme/google_chrome', | 199 'branding_dir': '../app/theme/google_chrome', |
174 }, | 200 }, |
175 }, { # else branding!="Chrome" | 201 }, { # else branding!="Chrome" |
176 'variables': { | 202 'variables': { |
177 'branding_dir': '../app/theme/chromium', | 203 'branding_dir': '../app/theme/chromium', |
178 }, | 204 }, |
179 }], | 205 }], |
180 ], | 206 ], |
181 } | 207 } |
OLD | NEW |