| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 225 |
| 226 if not env.Bit('windows'): | 226 if not env.Bit('windows'): |
| 227 # TODO(port): This is temporary so we can link. | 227 # TODO(port): This is temporary so we can link. |
| 228 input_files.Append( | 228 input_files.Append( |
| 229 'temp_scaffolding_stubs.cc', | 229 'temp_scaffolding_stubs.cc', |
| 230 'file_descriptor_set_posix.cc', | 230 'file_descriptor_set_posix.cc', |
| 231 ) | 231 ) |
| 232 | 232 |
| 233 # TODO(port): Port these. | 233 # TODO(port): Port these. |
| 234 input_files.Remove( | 234 input_files.Remove( |
| 235 'chrome_plugin_util.cc', | |
| 236 'chrome_process_filter.cc', | 235 'chrome_process_filter.cc', |
| 237 'drag_drop_types.cc', | 236 'drag_drop_types.cc', |
| 238 'gfx/emf.cc', | 237 'gfx/emf.cc', |
| 239 'gfx/icon_util.cc', | 238 'gfx/icon_util.cc', |
| 240 'gfx/path.cc', | 239 'gfx/path.cc', |
| 241 'os_exchange_data.cc', | 240 'os_exchange_data.cc', |
| 242 'process_watcher.cc', | 241 'process_watcher.cc', |
| 243 ) | 242 ) |
| 244 | 243 |
| 245 if not env.Bit('windows'): | 244 if not env.Bit('windows'): |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 './common.vsprops', | 341 './common.vsprops', |
| 343 '$(SolutionDir)../build/release.vsprops', | 342 '$(SolutionDir)../build/release.vsprops', |
| 344 ]) | 343 ]) |
| 345 | 344 |
| 346 p.AddFileConfig('../tools/build/win/precompiled.cc', | 345 p.AddFileConfig('../tools/build/win/precompiled.cc', |
| 347 'Debug|Win32', | 346 'Debug|Win32', |
| 348 tools=[ | 347 tools=[ |
| 349 MSVSTool('VCCLCompilerTool', | 348 MSVSTool('VCCLCompilerTool', |
| 350 UsePrecompiledHeader='1'), | 349 UsePrecompiledHeader='1'), |
| 351 ]) | 350 ]) |
| OLD | NEW |