Chromium Code Reviews| 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 # 'mini_installer.gyp:mini_installer', | |
|
robertshield
2010/11/19 20:56:42
Add a TODO() here to track this down?
grt (UTC plus 2)
2010/11/22 17:53:29
Done.
| |
| 24 '../../base/base.gyp:test_support_base', | |
| 25 '../../testing/gtest.gyp:gtest', | |
| 26 '../chrome.gyp:common_constants', | |
| 27 '../chrome.gyp:installer_util', | |
| 28 ], | |
| 29 'include_dirs': [ | |
| 30 '../..', | |
| 31 ], | |
| 32 'sources': [ | |
| 33 'test/alternate_version_generator.cc', | |
| 34 'test/alternate_version_generator.h', | |
| 35 'test/pe_image_resources.cc', | |
| 36 'test/pe_image_resources.h', | |
| 37 'test/resource_loader.cc', | |
| 38 'test/resource_loader.h', | |
| 39 'test/resource_updater.cc', | |
| 40 'test/resource_updater.h', | |
| 41 'test/run_all_tests.cc', | |
| 42 'test/upgrade_test.cc', | |
| 43 ], | |
| 44 }, | |
| 45 ], | |
| 46 }], | |
| 47 [ 'branding == "Chrome"', { | |
| 48 'variables': { | |
| 49 'branding_dir': '../app/theme/google_chrome', | |
| 50 }, | |
| 51 }, { # else branding!="Chrome" | |
| 52 'variables': { | |
| 53 'branding_dir': '../app/theme/chromium', | |
| 54 }, | |
| 55 }], | |
| 56 ], | |
| 57 } | |
| 58 | |
| 59 # Local Variables: | |
| 60 # tab-width:2 | |
| 61 # indent-tabs-mode:nil | |
| 62 # End: | |
| 63 # vim: set expandtab tabstop=2 shiftwidth=2: | |
| OLD | NEW |