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. | |
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: fix rules/targets/etc for mini_installer.gyp:mini_installer | |
tommi (sloooow) - chröme
2010/11/22 19:43:42
TODO(grt)
grt (UTC plus 2)
2010/11/22 20:49:23
Done.
| |
24 # so that it does no work if nothing has changed. | |
25 # 'mini_installer.gyp:mini_installer', | |
26 '../../base/base.gyp:test_support_base', | |
27 '../../testing/gtest.gyp:gtest', | |
28 '../chrome.gyp:common_constants', | |
29 '../chrome.gyp:installer_util', | |
30 ], | |
31 'include_dirs': [ | |
32 '../..', | |
33 ], | |
34 'sources': [ | |
35 'test/alternate_version_generator.cc', | |
36 'test/alternate_version_generator.h', | |
37 'test/pe_image_resources.cc', | |
38 'test/pe_image_resources.h', | |
39 'test/resource_loader.cc', | |
40 'test/resource_loader.h', | |
41 'test/resource_updater.cc', | |
42 'test/resource_updater.h', | |
43 'test/run_all_tests.cc', | |
44 'test/upgrade_test.cc', | |
45 ], | |
46 }, | |
47 ], | |
48 }], | |
49 [ 'branding == "Chrome"', { | |
50 'variables': { | |
51 'branding_dir': '../app/theme/google_chrome', | |
52 }, | |
53 }, { # else branding!="Chrome" | |
54 'variables': { | |
55 'branding_dir': '../app/theme/chromium', | |
56 }, | |
57 }], | |
58 ], | |
59 } | |
60 | |
61 # Local Variables: | |
62 # tab-width:2 | |
63 # indent-tabs-mode:nil | |
64 # End: | |
65 # vim: set expandtab tabstop=2 shiftwidth=2: | |
OLD | NEW |