OLD | NEW |
---|---|
(Empty) | |
1 { | |
robertshield
2011/11/28 01:16:38
license header
Sigurður Ásgeirsson
2011/11/28 15:02:10
Done.
| |
2 'variables': { | |
3 'version_py': '../../chrome/tools/build/version.py', | |
robertshield
2011/11/28 01:16:38
I believe there's a <(DEPTH) built-in you can use
| |
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 'includes': [ | |
11 '../../build/win_precompile.gypi', | |
robertshield
2011/11/28 01:16:38
DEPTH (see above)
Sigurður Ásgeirsson
2011/11/28 15:02:10
Apparently DEPTH isn't expanded - or defined - soo
| |
12 ], | |
13 'conditions': [ | |
14 # This target won't build in fastbuild, since there are no PDBs. | |
15 ['OS=="win" and fastbuild==0', { | |
16 'targets': [ | |
17 { | |
18 'target_name': 'mini_installer_syzygy', | |
19 'type': 'executable', | |
20 'product_name': 'mini_installer', | |
21 | |
22 'variables': { | |
23 'chrome_dll_project': '../chrome_syzygy.gyp:chrome_dll_syzygy', | |
24 'chrome_dll_path': '<(PRODUCT_DIR)/syzygy/chrome.dll', | |
25 'output_dir': '<(PRODUCT_DIR)/syzygy', | |
26 }, | |
27 # Bulk of the build configuration comes from here. | |
28 'includes': [ 'mini_installer.gypi', ], | |
29 }, | |
30 ], | |
31 }], | |
32 [ 'branding == "Chrome"', { | |
33 'variables': { | |
34 'branding_dir': '../app/theme/google_chrome', | |
35 }, | |
36 }, { # else branding!="Chrome" | |
robertshield
2011/11/28 01:16:38
two spaces before comment
Sigurður Ásgeirsson
2011/11/28 15:02:10
Done.
| |
37 'variables': { | |
38 'branding_dir': '../app/theme/chromium', | |
39 }, | |
40 }], | |
41 ], | |
42 } | |
OLD | NEW |