Chromium Code Reviews| Index: chrome/installer/upgrade_test.gyp | 
| =================================================================== | 
| --- chrome/installer/upgrade_test.gyp (revision 0) | 
| +++ chrome/installer/upgrade_test.gyp (revision 0) | 
| @@ -0,0 +1,63 @@ | 
| +{ | 
| + 'variables': { | 
| + 'version_py': '../../chrome/tools/build/version.py', | 
| + 'version_path': '../../chrome/VERSION', | 
| + 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', | 
| + # 'branding_dir' is set in the 'conditions' section at the bottom. | 
| + 'msvs_use_common_release': 0, | 
| + 'msvs_use_common_linker_extras': 0, | 
| + }, | 
| + 'conditions': [ | 
| + ['OS=="win"', { | 
| + 'target_defaults': { | 
| + }, | 
| + 'targets': [ | 
| + { | 
| + 'target_name': 'upgrade_test', | 
| + 'msvs_guid': 'BC4D6130-FDAD-47FB-B4FD-FCAF78DCBC3C', | 
| + 'type': 'executable', | 
| + 'dependencies': [ | 
| + # This dependency, although correct, results in the mini installer | 
| + # being rebuilt every time upgrade_test is built. So disable it | 
| + # for now. | 
| + # '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.
 
 | 
| + '../../base/base.gyp:test_support_base', | 
| + '../../testing/gtest.gyp:gtest', | 
| + '../chrome.gyp:common_constants', | 
| + '../chrome.gyp:installer_util', | 
| + ], | 
| + 'include_dirs': [ | 
| + '../..', | 
| + ], | 
| + 'sources': [ | 
| + 'test/alternate_version_generator.cc', | 
| + 'test/alternate_version_generator.h', | 
| + 'test/pe_image_resources.cc', | 
| + 'test/pe_image_resources.h', | 
| + 'test/resource_loader.cc', | 
| + 'test/resource_loader.h', | 
| + 'test/resource_updater.cc', | 
| + 'test/resource_updater.h', | 
| + 'test/run_all_tests.cc', | 
| + 'test/upgrade_test.cc', | 
| + ], | 
| + }, | 
| + ], | 
| + }], | 
| + [ 'branding == "Chrome"', { | 
| + 'variables': { | 
| + 'branding_dir': '../app/theme/google_chrome', | 
| + }, | 
| + }, { # else branding!="Chrome" | 
| + 'variables': { | 
| + 'branding_dir': '../app/theme/chromium', | 
| + }, | 
| + }], | 
| + ], | 
| +} | 
| + | 
| +# Local Variables: | 
| +# tab-width:2 | 
| +# indent-tabs-mode:nil | 
| +# End: | 
| +# vim: set expandtab tabstop=2 shiftwidth=2: |