diff options
Diffstat (limited to 'chrome/test/startup/SConscript')
-rw-r--r-- | chrome/test/startup/SConscript | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/chrome/test/startup/SConscript b/chrome/test/startup/SConscript index 744014b..7815551 100644 --- a/chrome/test/startup/SConscript +++ b/chrome/test/startup/SConscript @@ -44,6 +44,22 @@ env_test.Prepend( '$SKIA_DIR/platform',
'#/..',
],
+ LIBS = [
+ 'googleurl',
+ 'skia',
+ 'libpng',
+ 'gtest',
+ 'base_gfx',
+ 'icuuc',
+ 'common',
+ 'zlib',
+ 'browser',
+ 'base',
+ 'automation',
+ ],
+)
+
+env_test.Prepend(
LINKFLAGS = [
'/INCREMENTAL',
'/DEBUG',
@@ -76,23 +92,9 @@ input_files = [ 'startup_test.cc',
]
-libs = [
- '$GOOGLEURL_DIR/googleurl.lib',
- '$SKIA_DIR/skia.lib',
- '$LIBPNG_DIR/libpng.lib',
- '$TESTING_DIR/gtest.lib',
- '$BASE_DIR/gfx/base_gfx.lib',
- '$ICU38_DIR/icuuc.lib',
- '$CHROME_DIR/common/common.lib',
- '$ZLIB_DIR/zlib.lib',
- '$CHROME_DIR/browser/browser.lib',
- '$BASE_DIR/base.lib',
- '$CHROME_DIR/test/automation/automation.lib',
-]
-
exe = env_test.ChromeTestProgram(['startup_tests',
'startup_tests.pdb'],
- input_files + libs)
+ input_files)
i = env_test.Install('$TARGET_ROOT', exe)
env_test.Alias('chrome', i)
|