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

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

Issue 10769: Move dmg_fp in scons build to compile from (Closed)
Patch Set: linux too 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') | webkit/tools/test_shell/SConscript » ('j') | 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',
36 'icu', 35 'icu',
37 ], 36 ],
38 ) 37 )
39 38
40 if env['PLATFORM'] == 'win32': 39 if env['PLATFORM'] == 'win32':
41 input_files.extend([ 40 input_files.extend([
42 env_res.RES('npapi_test.rc'), 41 env_res.RES('npapi_test.rc'),
43 'npapi_test.def' 42 'npapi_test.def'
44 ]) 43 ])
45 44
(...skipping 22 matching lines...) Expand all
68 '/ignore:4199', 67 '/ignore:4199',
69 '/nxcompat', 68 '/nxcompat',
70 ], 69 ],
71 ) 70 )
72 71
73 dll = env.ChromeSharedLibrary('npapi_test_plugin', input_files) 72 dll = env.ChromeSharedLibrary('npapi_test_plugin', input_files)
74 73
75 i = env.Install('$TARGET_ROOT', dll) 74 i = env.Install('$TARGET_ROOT', dll)
76 env.Alias('webkit', i) 75 env.Alias('webkit', i)
77 76
OLDNEW
« no previous file with comments | « webkit/activex_shim_dll/SConscript ('k') | webkit/tools/test_shell/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698