| 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 '$BREAKPAD_DIR/using_breakpad.scons', | 10 '$BREAKPAD_DIR/using_breakpad.scons', |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 'visitedlink_common.h', | 199 'visitedlink_common.h', |
| 200 'win_safe_util.cc', | 200 'win_safe_util.cc', |
| 201 'win_safe_util.h', | 201 'win_safe_util.h', |
| 202 'win_util.cc', | 202 'win_util.cc', |
| 203 'win_util.h', | 203 'win_util.h', |
| 204 'worker_thread_ticker.cc', | 204 'worker_thread_ticker.cc', |
| 205 'worker_thread_ticker.h', | 205 'worker_thread_ticker.h', |
| 206 ]) | 206 ]) |
| 207 | 207 |
| 208 if not env.Bit('windows'): | 208 if not env.Bit('windows'): |
| 209 # TODO(port): This is temporary so we can link. |
| 210 input_files.Append( |
| 211 'temp_scaffolding_stubs.cc' |
| 212 ) |
| 213 |
| 209 # TODO(port): Port these. | 214 # TODO(port): Port these. |
| 210 input_files.Remove( | 215 input_files.Remove( |
| 211 'chrome_plugin_util.cc', | 216 'chrome_plugin_util.cc', |
| 212 'chrome_process_filter.cc', | 217 'chrome_process_filter.cc', |
| 213 'drag_drop_types.cc', | 218 'drag_drop_types.cc', |
| 214 'gfx/emf.cc', | 219 'gfx/emf.cc', |
| 215 'gfx/icon_util.cc', | 220 'gfx/icon_util.cc', |
| 216 'gfx/path.cc', | 221 'gfx/path.cc', |
| 217 'ipc_logging.cc', | 222 'ipc_logging.cc', |
| 218 'os_exchange_data.cc', | 223 'os_exchange_data.cc', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 './common.vsprops', | 300 './common.vsprops', |
| 296 '$(SolutionDir)../build/release.vsprops', | 301 '$(SolutionDir)../build/release.vsprops', |
| 297 ]) | 302 ]) |
| 298 | 303 |
| 299 p.AddFileConfig('../tools/build/win/precompiled.cc', | 304 p.AddFileConfig('../tools/build/win/precompiled.cc', |
| 300 'Debug|Win32', | 305 'Debug|Win32', |
| 301 tools=[ | 306 tools=[ |
| 302 MSVSTool('VCCLCompilerTool', | 307 MSVSTool('VCCLCompilerTool', |
| 303 UsePrecompiledHeader='1'), | 308 UsePrecompiledHeader='1'), |
| 304 ]) | 309 ]) |
| OLD | NEW |