| OLD | NEW | 
|---|
| 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  Loading... | 
| 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  Loading... | 
| 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 | 
| OLD | NEW | 
|---|