| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'renderer_main.cc', | 101 'renderer_main.cc', |
| 102 'renderer_resources.h', | 102 'renderer_resources.h', |
| 103 'user_script_slave.cc', | 103 'user_script_slave.cc', |
| 104 'user_script_slave.h', | 104 'user_script_slave.h', |
| 105 'visitedlink_slave.cc', | 105 'visitedlink_slave.cc', |
| 106 'visitedlink_slave.h', | 106 'visitedlink_slave.h', |
| 107 'webmediaplayer_delegate_impl.cc', | 107 'webmediaplayer_delegate_impl.cc', |
| 108 'webmediaplayer_delegate_impl.h', | 108 'webmediaplayer_delegate_impl.h', |
| 109 'webplugin_delegate_proxy.cc', | 109 'webplugin_delegate_proxy.cc', |
| 110 'webplugin_delegate_proxy.h', | 110 'webplugin_delegate_proxy.h', |
| 111 'webworker_proxy.cc', |
| 112 'webworker_proxy.h', |
| 111 ]) | 113 ]) |
| 112 | 114 |
| 113 if not env.Bit('windows'): | 115 if not env.Bit('windows'): |
| 114 # Windows-specific. | 116 # Windows-specific. |
| 115 input_files.Remove( | 117 input_files.Remove( |
| 116 '$CHROME_DIR/tools/build/win/precompiled_wtl$OBJSUFFIX', | 118 '$CHROME_DIR/tools/build/win/precompiled_wtl$OBJSUFFIX', |
| 117 '$CHROME_DIR/tools/build/win/precompiled_wtl.h', | 119 '$CHROME_DIR/tools/build/win/precompiled_wtl.h', |
| 118 ) | 120 ) |
| 119 | 121 |
| 120 if env.Bit('linux'): | 122 if env.Bit('linux'): |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 './renderer.vsprops', | 198 './renderer.vsprops', |
| 197 '$(SolutionDir)../build/release.vsprops', | 199 '$(SolutionDir)../build/release.vsprops', |
| 198 ]) | 200 ]) |
| 199 | 201 |
| 200 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', | 202 p.AddFileConfig('../tools/build/win/precompiled_wtl.cc', |
| 201 'Debug|Win32', | 203 'Debug|Win32', |
| 202 tools=[ | 204 tools=[ |
| 203 MSVSTool('VCCLCompilerTool', | 205 MSVSTool('VCCLCompilerTool', |
| 204 UsePrecompiledHeader='1'), | 206 UsePrecompiledHeader='1'), |
| 205 ]) | 207 ]) |
| OLD | NEW |