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 'conditions': [ | 10 'conditions': [ |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 }, | 80 }, |
81 }, | 81 }, |
82 'Release': { | 82 'Release': { |
83 'msvs_props': ['mini_installer/mini_installer_release.vsprops'], | 83 'msvs_props': ['mini_installer/mini_installer_release.vsprops'], |
84 'msvs_settings': { | 84 'msvs_settings': { |
85 'VCCLCompilerTool': { | 85 'VCCLCompilerTool': { |
86 'BasicRuntimeChecks': '0', | 86 'BasicRuntimeChecks': '0', |
87 }, | 87 }, |
88 }, | 88 }, |
89 }, | 89 }, |
90 'conditions': [ | |
91 ['OS=="win"', { | |
92 # TODO(bradnelson): add a gyp mechanism to make this more | |
93 # graceful. | |
94 'Purify': { | |
95 'msvs_props': [ | |
96 'mini_installer/mini_installer_release.vsprops' | |
97 ], | |
98 'msvs_settings': { | |
99 'VCCLCompilerTool': { | |
100 'BasicRuntimeChecks': '0', | |
101 }, | |
102 }, | |
103 }, | |
104 'Release - no tcmalloc': { | |
105 'msvs_props': [ | |
106 'mini_installer/mini_installer_release.vsprops' | |
107 ], | |
108 'msvs_settings': { | |
109 'VCCLCompilerTool': { | |
110 'BasicRuntimeChecks': '0', | |
111 }, | |
112 }, | |
113 }, | |
114 }], | |
115 ], | |
116 }, | 90 }, |
117 'rules': [ | 91 'rules': [ |
118 { | 92 { |
119 'rule_name': 'mini_installer_version', | 93 'rule_name': 'mini_installer_version', |
120 'extension': 'version', | 94 'extension': 'version', |
121 'variables': { | 95 'variables': { |
122 'template_input_path': 'mini_installer/mini_installer_exe_versio
n.rc.version', | 96 'template_input_path': 'mini_installer/mini_installer_exe_versio
n.rc.version', |
123 }, | 97 }, |
124 'inputs': [ | 98 'inputs': [ |
125 '<(template_input_path)', | 99 '<(template_input_path)', |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 }, | 183 }, |
210 }], | 184 }], |
211 ], | 185 ], |
212 } | 186 } |
213 | 187 |
214 # Local Variables: | 188 # Local Variables: |
215 # tab-width:2 | 189 # tab-width:2 |
216 # indent-tabs-mode:nil | 190 # indent-tabs-mode:nil |
217 # End: | 191 # End: |
218 # vim: set expandtab tabstop=2 shiftwidth=2: | 192 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |