Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: webkit/glue/plugins/test/SConscript

Issue 10868: fix scons webkit build on windows (Closed)
Patch Set: Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webkit/activex_shim_dll/SConscript ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 Import('env', 'env_res') 5 Import('env', 'env_res')
6 6
7 env = env.Clone() 7 env = env.Clone()
8 env_res = env_res.Clone() 8 env_res = env_res.Clone()
9 9
10 input_files = [ 10 input_files = [
(...skipping 14 matching lines...) Expand all
25 'plugin_execute_script_delete_test.cc', 25 'plugin_execute_script_delete_test.cc',
26 'plugin_javascript_open_popup.cc', 26 'plugin_javascript_open_popup.cc',
27 'plugin_client.cc', # Includes not ported headers. 27 'plugin_client.cc', # Includes not ported headers.
28 'plugin_npobject_lifetime_test.cc', # Has win32-isms (HWND, CALLBACK). 28 'plugin_npobject_lifetime_test.cc', # Has win32-isms (HWND, CALLBACK).
29 'plugin_window_size_test.cc' # Has w32-isms including HWND. 29 'plugin_window_size_test.cc' # Has w32-isms including HWND.
30 ]) 30 ])
31 31
32 env.Append( 32 env.Append(
33 LIBS = [ 33 LIBS = [
34 'base', 34 'base',
35 'dmg_fp',
35 'icu', 36 'icu',
36 ], 37 ],
37 ) 38 )
38 39
39 if env['PLATFORM'] == 'win32': 40 if env['PLATFORM'] == 'win32':
40 input_files.extend([ 41 input_files.extend([
41 env_res.RES('npapi_test.rc'), 42 env_res.RES('npapi_test.rc'),
42 'npapi_test.def' 43 'npapi_test.def'
43 ]) 44 ])
44 45
(...skipping 22 matching lines...) Expand all
67 '/ignore:4199', 68 '/ignore:4199',
68 '/nxcompat', 69 '/nxcompat',
69 ], 70 ],
70 ) 71 )
71 72
72 dll = env.ChromeSharedLibrary('npapi_test_plugin', input_files) 73 dll = env.ChromeSharedLibrary('npapi_test_plugin', input_files)
73 74
74 i = env.Install('$TARGET_ROOT', dll) 75 i = env.Install('$TARGET_ROOT', dll)
75 env.Alias('webkit', i) 76 env.Alias('webkit', i)
76 77
OLDNEW
« no previous file with comments | « webkit/activex_shim_dll/SConscript ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698