| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 input_files.Remove( | 59 input_files.Remove( |
| 60 '$CHROME_DIR/tools/build/win/precompiled$OBJSUFFIX', | 60 '$CHROME_DIR/tools/build/win/precompiled$OBJSUFFIX', |
| 61 ) | 61 ) |
| 62 | 62 |
| 63 if env.Bit('posix'): | 63 if env.Bit('posix'): |
| 64 # TODO(port) | 64 # TODO(port) |
| 65 input_files.Remove( | 65 input_files.Remove( |
| 66 'chrome_plugin_host.cc', | 66 'chrome_plugin_host.cc', |
| 67 'npobject_proxy.cc', | 67 'npobject_proxy.cc', |
| 68 'npobject_stub.cc', | 68 'npobject_stub.cc', |
| 69 'npobject_util.cc', | |
| 70 'plugin_channel.cc', | 69 'plugin_channel.cc', |
| 71 'plugin_channel_base.cc', | 70 'plugin_channel_base.cc', |
| 72 'plugin_main.cc', | 71 'plugin_main.cc', |
| 73 'plugin_process.cc', | 72 'plugin_process.cc', |
| 74 'plugin_thread.cc', | 73 'plugin_thread.cc', |
| 75 'webplugin_delegate_stub.cc', | 74 'webplugin_delegate_stub.cc', |
| 76 'webplugin_proxy.cc', | 75 'webplugin_proxy.cc', |
| 77 ) | 76 ) |
| 78 | 77 |
| 79 env.ChromeLibrary('plugin', input_files) | 78 env.ChromeLibrary('plugin', input_files) |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 '$(SolutionDir)../third_party/npapi/using_npapi.vsprops', | 122 '$(SolutionDir)../third_party/npapi/using_npapi.vsprops', |
| 124 '$(SolutionDir)../skia/using_skia.vsprops', | 123 '$(SolutionDir)../skia/using_skia.vsprops', |
| 125 ]) | 124 ]) |
| 126 | 125 |
| 127 p.AddFileConfig('../tools/build/win/precompiled.cc', | 126 p.AddFileConfig('../tools/build/win/precompiled.cc', |
| 128 'Debug|Win32', | 127 'Debug|Win32', |
| 129 tools=[ | 128 tools=[ |
| 130 MSVSTool('VCCLCompilerTool', | 129 MSVSTool('VCCLCompilerTool', |
| 131 UsePrecompiledHeader='1'), | 130 UsePrecompiledHeader='1'), |
| 132 ]) | 131 ]) |
| OLD | NEW |