diff options
Diffstat (limited to 'chrome/test/security_tests/SConscript')
-rw-r--r-- | chrome/test/security_tests/SConscript | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/chrome/test/security_tests/SConscript b/chrome/test/security_tests/SConscript index 2caf4d8..27a3eed 100644 --- a/chrome/test/security_tests/SConscript +++ b/chrome/test/security_tests/SConscript @@ -36,6 +36,9 @@ env.Prepend( CPPPATH = [
'#/..',
],
+)
+
+env.Prepend(
LINKFLAGS = [
'/INCREMENTAL',
@@ -63,7 +66,14 @@ input_files = [ '$SANDBOX_DIR/tests/validation_tests/commands${OBJSUFFIX}',
]
-dll = env.ChromeSharedLibrary('security_tests', input_files)
+dll = env.ChromeSharedLibrary(['security_tests',
+ 'security_tests.lib',
+ 'security_tests.ilk',
+ 'security_tests.pdb'],
+ input_files)
+
+# TODO(sgk): can go away once ChromeSharedLibrary() handles this.
+env.Install('$LIBS_DIR', dll[1])
i = env.Install('$TARGET_ROOT', dll)
env.Alias('chrome', i)
|