| 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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 'win_safe_util.h', | 211 'win_safe_util.h', |
| 212 'win_util.cc', | 212 'win_util.cc', |
| 213 'win_util.h', | 213 'win_util.h', |
| 214 'worker_thread_ticker.cc', | 214 'worker_thread_ticker.cc', |
| 215 'worker_thread_ticker.h', | 215 'worker_thread_ticker.h', |
| 216 ]) | 216 ]) |
| 217 | 217 |
| 218 if not env.Bit('windows'): | 218 if not env.Bit('windows'): |
| 219 # TODO(port): This is temporary so we can link. | 219 # TODO(port): This is temporary so we can link. |
| 220 input_files.Append( | 220 input_files.Append( |
| 221 'temp_scaffolding_stubs.cc' | 221 'temp_scaffolding_stubs.cc', |
| 222 'file_descriptor_posix.cc', |
| 222 ) | 223 ) |
| 223 | 224 |
| 224 # TODO(port): Port these. | 225 # TODO(port): Port these. |
| 225 input_files.Remove( | 226 input_files.Remove( |
| 226 'chrome_plugin_util.cc', | 227 'chrome_plugin_util.cc', |
| 227 'chrome_process_filter.cc', | 228 'chrome_process_filter.cc', |
| 228 'drag_drop_types.cc', | 229 'drag_drop_types.cc', |
| 229 'gfx/emf.cc', | 230 'gfx/emf.cc', |
| 230 'gfx/icon_util.cc', | 231 'gfx/icon_util.cc', |
| 231 'gfx/path.cc', | 232 'gfx/path.cc', |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 './common.vsprops', | 319 './common.vsprops', |
| 319 '$(SolutionDir)../build/release.vsprops', | 320 '$(SolutionDir)../build/release.vsprops', |
| 320 ]) | 321 ]) |
| 321 | 322 |
| 322 p.AddFileConfig('../tools/build/win/precompiled.cc', | 323 p.AddFileConfig('../tools/build/win/precompiled.cc', |
| 323 'Debug|Win32', | 324 'Debug|Win32', |
| 324 tools=[ | 325 tools=[ |
| 325 MSVSTool('VCCLCompilerTool', | 326 MSVSTool('VCCLCompilerTool', |
| 326 UsePrecompiledHeader='1'), | 327 UsePrecompiledHeader='1'), |
| 327 ]) | 328 ]) |
| OLD | NEW |