| 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') | 5 Import('env') |
| 6 | 6 |
| 7 env = env.Clone() | 7 env = env.Clone() |
| 8 | 8 |
| 9 env.SConscript([ | 9 env.SConscript([ |
| 10 '$NPAPI_DIR/using_npapi.scons', | 10 '$NPAPI_DIR/using_npapi.scons', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'plugin_process.cc', | 51 'plugin_process.cc', |
| 52 'plugin_thread.cc', | 52 'plugin_thread.cc', |
| 53 'webplugin_delegate_stub.cc', | 53 'webplugin_delegate_stub.cc', |
| 54 'webplugin_proxy.cc', | 54 'webplugin_proxy.cc', |
| 55 ] | 55 ] |
| 56 for remove in to_be_ported_files: | 56 for remove in to_be_ported_files: |
| 57 input_files.remove(remove) | 57 input_files.remove(remove) |
| 58 | 58 |
| 59 env.ChromeStaticLibrary('plugin', input_files) | 59 env.ChromeStaticLibrary('plugin', input_files) |
| 60 | 60 |
| 61 env.ChromeMSVSProject('$CHROME_DIR/plugin/plugin.vcproj', |
| 62 guid='{20A560A0-2CD0-4D9E-A58B-1F24B99C087A}') |
| OLD | NEW |