OLD | NEW |
---|---|
(Empty) | |
1 { | |
2 'variables': { | |
3 'version_py': '../../chrome/tools/build/version.py', | |
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. | |
Nico
2014/04/03 18:17:49
Are the variables up here used for anything?
grt (UTC plus 2)
2014/04/03 19:16:11
I don't remember. Possibly they were needed by one
robertshield
2014/04/03 19:35:10
The ones above seem not to be, runhooks completes
| |
7 'msvs_use_common_release': 0, | |
8 'msvs_use_common_linker_extras': 0, | |
9 }, | |
10 'conditions': [ | |
11 ['OS=="win"', { | |
12 'target_defaults': { | |
13 }, | |
14 'targets': [ | |
15 { | |
16 'target_name': 'upgrade_test', | |
17 'msvs_guid': 'BC4D6130-FDAD-47FB-B4FD-FCAF78DCBC3C', | |
18 'type': 'executable', | |
19 'dependencies': [ | |
20 # This dependency, although correct, results in the mini installer | |
21 # being rebuilt every time upgrade_test is built. So disable it | |
22 # for now. | |
23 # TODO(grt): fix rules/targets/etc for | |
24 # mini_installer.gyp:mini_installer so that it does no work if | |
25 # nothing has changed, then un-comment this next line: | |
26 # 'mini_installer.gyp:mini_installer', | |
27 '../../base/base.gyp:test_support_base', | |
28 '../../testing/gtest.gyp:gtest', | |
29 '../chrome.gyp:common_constants', | |
30 '../chrome.gyp:installer_util', | |
31 ], | |
32 'include_dirs': [ | |
33 '../..', | |
34 ], | |
35 'sources': [ | |
36 'test/alternate_version_generator.cc', | |
37 'test/alternate_version_generator.h', | |
38 'test/pe_image_resources.cc', | |
39 'test/pe_image_resources.h', | |
40 'test/resource_loader.cc', | |
41 'test/resource_loader.h', | |
42 'test/resource_updater.cc', | |
43 'test/resource_updater.h', | |
44 'test/run_all_tests.cc', | |
45 'test/upgrade_test.cc', | |
46 ], | |
47 }, | |
48 ], | |
49 }], | |
50 [ 'branding == "Chrome"', { | |
51 'variables': { | |
52 'branding_dir': '../app/theme/google_chrome', | |
53 }, | |
54 }, { # else branding!="Chrome" | |
55 'variables': { | |
56 'branding_dir': '../app/theme/chromium', | |
57 }, | |
58 }], | |
59 ], | |
60 } | |
61 | |
62 # Local Variables: | |
63 # tab-width:2 | |
64 # indent-tabs-mode:nil | |
65 # End: | |
66 # vim: set expandtab tabstop=2 shiftwidth=2: | |
OLD | NEW |