Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Side by Side Diff: chrome/installer/mini_installer.gypi

Issue 99473012: Enable icu_use_data_file on Windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: load icudtl.dat in DIR_MODULE instead of DIR_EXE on WIndows Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/installer/mini_installer.gyp ('k') | chrome/installer/mini_installer/chrome.release » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 29 matching lines...) Expand all
238 'variables': { 246 'variables': {
239 'branding_dir': '../app/theme/google_chrome', 247 'branding_dir': '../app/theme/google_chrome',
240 }, 248 },
241 }, { # else branding!="Chrome" 249 }, { # else branding!="Chrome"
242 'variables': { 250 'variables': {
243 'branding_dir': '../app/theme/chromium', 251 'branding_dir': '../app/theme/chromium',
244 }, 252 },
245 }], 253 }],
246 ], 254 ],
247 } 255 }
OLDNEW
« no previous file with comments | « chrome/installer/mini_installer.gyp ('k') | chrome/installer/mini_installer/chrome.release » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698