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

Side by Side Diff: chrome/chrome_installer.gypi

Issue 165893002: Moving version script and gypi file to build\util. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Found the goof... tools -> util... :-/ Created 6 years, 10 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
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 { 5 {
6 'variables': { 6 'variables': {
7 'lastchange_path': '../build/util/LASTCHANGE', 7 'lastchange_path': '../build/util/LASTCHANGE',
8 'libpeer_target_type%': 'static_library', 8 'libpeer_target_type%': 'static_library',
9 # 'branding_dir' is set in the 'conditions' section at the bottom. 9 # 'branding_dir' is set in the 'conditions' section at the bottom.
10 }, 10 },
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 ], 302 ],
303 }, 303 },
304 }, 304 },
305 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 305 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
306 'msvs_disabled_warnings': [ 4267, ], 306 'msvs_disabled_warnings': [ 4267, ],
307 'rules': [ 307 'rules': [
308 { 308 {
309 'rule_name': 'setup_version', 309 'rule_name': 'setup_version',
310 'extension': 'version', 310 'extension': 'version',
311 'variables': { 311 'variables': {
312 'version_py_path': '../chrome/tools/build/version.py', 312 'version_py_path': '<(DEPTH)/build/util/version.py',
313 'template_input_path': 'installer/setup/setup_exe_version.rc.ver sion', 313 'template_input_path': 'installer/setup/setup_exe_version.rc.ver sion',
314 }, 314 },
315 'inputs': [ 315 'inputs': [
316 '<(template_input_path)', 316 '<(template_input_path)',
317 '<(version_path)', 317 '<(version_path)',
318 '<(lastchange_path)', 318 '<(lastchange_path)',
319 '<(branding_dir)/BRANDING', 319 '<(branding_dir)/BRANDING',
320 ], 320 ],
321 'outputs': [ 321 'outputs': [
322 '<(SHARED_INTERMEDIATE_DIR)/setup/setup_exe_version.rc', 322 '<(SHARED_INTERMEDIATE_DIR)/setup/setup_exe_version.rc',
(...skipping 891 matching lines...) Expand 10 before | Expand all | Expand 10 after
1214 'branding_dir_100': 'app/theme/default_100_percent/google_chrome', 1214 'branding_dir_100': 'app/theme/default_100_percent/google_chrome',
1215 }, 1215 },
1216 }, { # else branding!="Chrome" 1216 }, { # else branding!="Chrome"
1217 'variables': { 1217 'variables': {
1218 'branding_dir': 'app/theme/chromium', 1218 'branding_dir': 'app/theme/chromium',
1219 'branding_dir_100': 'app/theme/default_100_percent/chromium', 1219 'branding_dir_100': 'app/theme/default_100_percent/chromium',
1220 }, 1220 },
1221 }], 1221 }],
1222 ], 1222 ],
1223 } 1223 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698