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

Side by Side Diff: chrome/installer/installer_tools.gyp

Issue 6490024: New installation validator machinery to check the machine state.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 {
2 'variables': {
3 'version_py': '../../chrome/tools/build/version.py',
robertshield 2011/02/14 14:09:11 I vaguely remember gyp having a pre-defined variab
grt (UTC plus 2) 2011/02/14 15:48:03 Cool. Done.
4 'version_path': '../../chrome/VERSION',
5 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE',
6 # 'branding_dir' is set in the 'conditions' section at the bottom.
7 'msvs_use_common_release': 0,
8 'msvs_use_common_linker_extras': 0,
9 },
10 'conditions': [
11 ['OS=="win"', {
12 'targets': [
13 {
14 'target_name': 'validate_installation',
15 'msvs_guid': '7CC08DA8-E9CA-4573-A8C4-E7F0D0CF8EBA',
16 'type': 'executable',
17 'dependencies': [
18 '../chrome.gyp:common_constants',
19 '../chrome.gyp:installer_util',
20 '../chrome.gyp:installer_util_strings',
21 ],
22 'include_dirs': [
23 '../..',
24 ],
25 'sources': [
26 'tools/validate_installation_main.cc',
27 'tools/validate_installation.rc',
28 'tools/validate_installation_resource.h',
29 ],
30 },
31 ],
32 }],
33 [ 'branding == "Chrome"', {
34 'variables': {
35 'branding_dir': '../app/theme/google_chrome',
36 },
37 }, { # else branding!="Chrome"
38 'variables': {
39 'branding_dir': '../app/theme/chromium',
40 },
41 }],
42 ],
43 }
44
45 # Local Variables:
46 # tab-width:2
47 # indent-tabs-mode:nil
48 # End:
49 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698