OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'dependencies': [ | 5 'dependencies': [ |
6 '<@(chrome_dll_project)', | 6 '<@(chrome_dll_project)', |
7 '../chrome.gyp:chrome', | 7 '../chrome.gyp:chrome', |
8 '../chrome.gyp:chrome_nacl_win64', | 8 '../chrome.gyp:chrome_nacl_win64', |
9 '../chrome.gyp:default_extensions', | 9 '../chrome.gyp:default_extensions', |
10 '../chrome.gyp:setup', | 10 '../chrome.gyp:setup', |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', | 178 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', |
179 ], | 179 ], |
180 'variables': { | 180 'variables': { |
181 'target_arch_flag': '--target_arch=x64', | 181 'target_arch_flag': '--target_arch=x64', |
182 }, | 182 }, |
183 }, { | 183 }, { |
184 'variables': { | 184 'variables': { |
185 'target_arch_flag': '--target_arch=x86', | 185 'target_arch_flag': '--target_arch=x86', |
186 }, | 186 }, |
187 }], | 187 }], |
| 188 ['icu_use_data_file_flag == 0', { |
| 189 'inputs': [ |
| 190 '<(PRODUCT_DIR)/icudt.dll', |
| 191 ], |
| 192 }, { # else icu_use_data_file_flag != 0 |
| 193 'inputs': [ |
| 194 '<(PRODUCT_DIR)/icudtl.dat', |
| 195 ], |
| 196 }], |
188 ], | 197 ], |
189 'inputs': [ | 198 'inputs': [ |
190 '<(create_installer_archive_py_path)', | 199 '<(create_installer_archive_py_path)', |
191 '<(PRODUCT_DIR)/chrome.exe', | 200 '<(PRODUCT_DIR)/chrome.exe', |
192 '<@(chrome_dll_path)', | 201 '<@(chrome_dll_path)', |
193 '<(PRODUCT_DIR)/nacl64.exe', | 202 '<(PRODUCT_DIR)/nacl64.exe', |
194 '<(PRODUCT_DIR)/ppGoogleNaClPluginChrome.dll', | 203 '<(PRODUCT_DIR)/ppGoogleNaClPluginChrome.dll', |
195 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', | 204 '<(PRODUCT_DIR)/nacl_irt_x86_32.nexe', |
196 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', | 205 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', |
197 '<(PRODUCT_DIR)/locales/en-US.pak', | 206 '<(PRODUCT_DIR)/locales/en-US.pak', |
198 '<(PRODUCT_DIR)/icudt.dll', | |
199 ], | 207 ], |
200 'outputs': [ | 208 'outputs': [ |
201 'xxx.out', | 209 'xxx.out', |
202 '<(output_dir)/<(RULE_INPUT_NAME).7z', | 210 '<(output_dir)/<(RULE_INPUT_NAME).7z', |
203 '<(output_dir)/<(RULE_INPUT_NAME).packed.7z', | 211 '<(output_dir)/<(RULE_INPUT_NAME).packed.7z', |
204 '<(output_dir)/setup.ex_', | 212 '<(output_dir)/setup.ex_', |
205 '<(INTERMEDIATE_DIR)/packed_files.rc', | 213 '<(INTERMEDIATE_DIR)/packed_files.rc', |
206 ], | 214 ], |
207 'action': [ | 215 'action': [ |
208 'python', | 216 'python', |
(...skipping 30 matching lines...) Expand all Loading... |
239 'variables': { | 247 'variables': { |
240 'branding_dir': '../app/theme/google_chrome', | 248 'branding_dir': '../app/theme/google_chrome', |
241 }, | 249 }, |
242 }, { # else branding!="Chrome" | 250 }, { # else branding!="Chrome" |
243 'variables': { | 251 'variables': { |
244 'branding_dir': '../app/theme/chromium', | 252 'branding_dir': '../app/theme/chromium', |
245 }, | 253 }, |
246 }], | 254 }], |
247 ], | 255 ], |
248 } | 256 } |
OLD | NEW |