| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 'ipc_message_utils.cc', | 93 'ipc_message_utils.cc', |
| 94 'ipc_message_utils.h', | 94 'ipc_message_utils.h', |
| 95 'ipc_sync_channel.cc', | 95 'ipc_sync_channel.cc', |
| 96 'ipc_sync_channel.h', | 96 'ipc_sync_channel.h', |
| 97 'ipc_sync_message.cc', | 97 'ipc_sync_message.cc', |
| 98 'ipc_sync_message.h', | 98 'ipc_sync_message.h', |
| 99 'plugin_messages.h', | 99 'plugin_messages.h', |
| 100 'plugin_messages_internal.h', | 100 'plugin_messages_internal.h', |
| 101 'render_messages.h', | 101 'render_messages.h', |
| 102 'render_messages_internal.h', | 102 'render_messages_internal.h', |
| 103 'worker_messages.h', |
| 104 'worker_messages_internal.h', |
| 103 ]), | 105 ]), |
| 104 'accessibility.h', | 106 'accessibility.h', |
| 105 'animation.cc', | 107 'animation.cc', |
| 106 'animation.h', | 108 'animation.h', |
| 107 'child_process.cc', | 109 'child_process.cc', |
| 108 'child_process.h', | 110 'child_process.h', |
| 109 'child_process_host.cc', | 111 'child_process_host.cc', |
| 110 'child_process_host.h', | 112 'child_process_host.h', |
| 111 'child_process_info.cc', | 113 'child_process_info.cc', |
| 112 'child_process_info.h', | 114 'child_process_info.h', |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 './common.vsprops', | 326 './common.vsprops', |
| 325 '$(SolutionDir)../build/release.vsprops', | 327 '$(SolutionDir)../build/release.vsprops', |
| 326 ]) | 328 ]) |
| 327 | 329 |
| 328 p.AddFileConfig('../tools/build/win/precompiled.cc', | 330 p.AddFileConfig('../tools/build/win/precompiled.cc', |
| 329 'Debug|Win32', | 331 'Debug|Win32', |
| 330 tools=[ | 332 tools=[ |
| 331 MSVSTool('VCCLCompilerTool', | 333 MSVSTool('VCCLCompilerTool', |
| 332 UsePrecompiledHeader='1'), | 334 UsePrecompiledHeader='1'), |
| 333 ]) | 335 ]) |
| OLD | NEW |