From 012adff3836f208288c09323c0de2f93117c13c9 Mon Sep 17 00:00:00 2001 From: "bradnelson@chromium.org" Date: Sat, 18 Oct 2008 00:30:22 +0000 Subject: Rolling back CL 3578, discovered hammer.bat had not been updated yet. Review URL: http://codereview.chromium.org/7507 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3582 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/glue/plugins/test/SConscript | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'webkit/glue/plugins/test/SConscript') diff --git a/webkit/glue/plugins/test/SConscript b/webkit/glue/plugins/test/SConscript index bfdc821..3e90365 100644 --- a/webkit/glue/plugins/test/SConscript +++ b/webkit/glue/plugins/test/SConscript @@ -69,7 +69,18 @@ if env['PLATFORM'] == 'win32': ], ) -dll = env.ChromeSharedLibrary('npapi_test_plugin', input_files) + dll = env.ChromeSharedLibrary([ + 'npapi_test_plugin', + 'npapi_test_plugin.lib', + 'npapi_test_plugin.ilk', + 'npapi_test_plugin.pdb' + ], input_files) -i = env.Replicate('$MAIN_DIR/Hammer', dll[0]) + # TODO(sgk): goes away once ChromeSharedLibrary does this for us. + env.Install('$LIBS_DIR', dll[1]) +else: + dll = env.ChromeSharedLibrary(['npapi_test_plugin'], input_files) + +i = env.Install('$TARGET_ROOT', dll) env.Alias('webkit', i) + -- cgit v1.1