| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 'l10n_util.cc', | 155 'l10n_util.cc', |
| 156 'l10n_util.h', | 156 'l10n_util.h', |
| 157 'libxml_utils.cc', | 157 'libxml_utils.cc', |
| 158 'libxml_utils.h', | 158 'libxml_utils.h', |
| 159 'logging_chrome.cc', | 159 'logging_chrome.cc', |
| 160 'logging_chrome.h', | 160 'logging_chrome.h', |
| 161 'main_function_params.h', | 161 'main_function_params.h', |
| 162 'message_router.cc', | 162 'message_router.cc', |
| 163 'message_router.h', | 163 'message_router.h', |
| 164 'mru_cache.h', | 164 'mru_cache.h', |
| 165 'native_web_keyboard_event.h', |
| 166 'native_web_keyboard_event_linux.cc', |
| 165 'navigation_types.h', | 167 'navigation_types.h', |
| 166 'notification_details.h', | 168 'notification_details.h', |
| 167 'notification_registrar.cc', | 169 'notification_registrar.cc', |
| 168 'notification_registrar.h', | 170 'notification_registrar.h', |
| 169 'notification_service.cc', | 171 'notification_service.cc', |
| 170 'notification_service.h', | 172 'notification_service.h', |
| 171 'notification_source.h', | 173 'notification_source.h', |
| 172 'notification_types.h', | 174 'notification_types.h', |
| 173 'os_exchange_data.cc', | 175 'os_exchange_data.cc', |
| 174 'os_exchange_data.h', | 176 'os_exchange_data.h', |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 './common.vsprops', | 349 './common.vsprops', |
| 348 '$(SolutionDir)../build/release.vsprops', | 350 '$(SolutionDir)../build/release.vsprops', |
| 349 ]) | 351 ]) |
| 350 | 352 |
| 351 p.AddFileConfig('../tools/build/win/precompiled.cc', | 353 p.AddFileConfig('../tools/build/win/precompiled.cc', |
| 352 'Debug|Win32', | 354 'Debug|Win32', |
| 353 tools=[ | 355 tools=[ |
| 354 MSVSTool('VCCLCompilerTool', | 356 MSVSTool('VCCLCompilerTool', |
| 355 UsePrecompiledHeader='1'), | 357 UsePrecompiledHeader='1'), |
| 356 ]) | 358 ]) |
| OLD | NEW |