| 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 '$CHROME_DIR/third_party/wtl/using_wtl.scons', | 10 '$CHROME_DIR/third_party/wtl/using_wtl.scons', |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 ) | 88 ) |
| 89 | 89 |
| 90 # TODO(port): Port these to Linux | 90 # TODO(port): Port these to Linux |
| 91 if env.Bit('linux'): | 91 if env.Bit('linux'): |
| 92 input_files.Remove( | 92 input_files.Remove( |
| 93 'chrome_plugin_host.cc', | 93 'chrome_plugin_host.cc', |
| 94 'debug_message_handler.cc', | 94 'debug_message_handler.cc', |
| 95 'external_js_object.cc', | 95 'external_js_object.cc', |
| 96 'net/render_dns_master.cc', | 96 'net/render_dns_master.cc', |
| 97 'plugin_channel_host.cc', | 97 'plugin_channel_host.cc', |
| 98 'render_process.cc', | |
| 99 'render_thread.cc', | 98 'render_thread.cc', |
| 100 'render_view.cc', | 99 'render_view.cc', |
| 101 'render_widget.cc', | 100 'render_widget.cc', |
| 102 'renderer_glue.cc', | 101 'renderer_glue.cc', |
| 103 'renderer_main.cc', | 102 'renderer_main.cc', |
| 104 'webplugin_delegate_proxy.cc', | 103 'webplugin_delegate_proxy.cc', |
| 105 ) | 104 ) |
| 106 | 105 |
| 107 # TODO(port): Port these to Mac | 106 # TODO(port): Port these to Mac |
| 108 if env.Bit('mac'): | 107 if env.Bit('mac'): |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 './renderer.vsprops', | 172 './renderer.vsprops', |
| 174 '$(SolutionDir)../build/release.vsprops', | 173 '$(SolutionDir)../build/release.vsprops', |
| 175 ]) | 174 ]) |
| 176 | 175 |
| 177 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', | 176 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', |
| 178 'Debug|Win32', | 177 'Debug|Win32', |
| 179 tools=[ | 178 tools=[ |
| 180 MSVSTool('VCCLCompilerTool', | 179 MSVSTool('VCCLCompilerTool', |
| 181 UsePrecompiledHeader='1'), | 180 UsePrecompiledHeader='1'), |
| 182 ]) | 181 ]) |
| OLD | NEW |