Chromium Code Reviews| Index: chrome/chrome_installer.gypi |
| =================================================================== |
| --- chrome/chrome_installer.gypi (revision 108839) |
| +++ chrome/chrome_installer.gypi (working copy) |
| @@ -14,6 +14,8 @@ |
| 'target_name': 'gcapi_dll', |
| 'type': 'loadable_module', |
| 'dependencies': [ |
| + 'installer_util', |
| + '<(DEPTH)/base/base.gyp:base', |
| '<(DEPTH)/google_update/google_update.gyp:google_update', |
| ], |
| 'include_dirs': [ |
| @@ -28,6 +30,7 @@ |
| 'target_name': 'gcapi_lib', |
| 'type': 'static_library', |
| 'dependencies': [ |
| + 'installer_util', |
|
grt (UTC plus 2)
2011/11/11 17:01:01
why doesn't this also depend on base like gcapi_dl
robertshield
2011/11/12 05:25:38
It does, I just forgot to add it. It likely builds
|
| '<(DEPTH)/google_update/google_update.gyp:google_update', |
| ], |
| 'include_dirs': [ |
| @@ -41,14 +44,20 @@ |
| { |
| 'target_name': 'gcapi_test', |
| 'type': 'executable', |
| - 'dependencies': [ |
| + 'dependencies': [ |
| + 'common', |
| 'gcapi_dll', |
| 'gcapi_lib', |
| + 'installer_util', |
| + '<(DEPTH)/base/base.gyp:base', |
| + '<(DEPTH)/base/base.gyp:test_support_base', |
| + '<(DEPTH)/testing/gtest.gyp:gtest', |
| ], |
| 'include_dirs': [ |
| '<(DEPTH)', |
| ], |
| 'sources': [ |
| + 'installer/gcapi/gcapi_last_run_test.cc', |
| 'installer/gcapi/gcapi_test.cc', |
| 'installer/gcapi/gcapi_test.rc', |
| 'installer/gcapi/resource.h', |