| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 'common_glue.cc', | 122 'common_glue.cc', |
| 123 'common_resources.h', | 123 'common_resources.h', |
| 124 'debug_flags.cc', | 124 'debug_flags.cc', |
| 125 'debug_flags.h', | 125 'debug_flags.h', |
| 126 'drag_drop_types.cc', | 126 'drag_drop_types.cc', |
| 127 'drag_drop_types.h', | 127 'drag_drop_types.h', |
| 128 'env_vars.cc', | 128 'env_vars.cc', |
| 129 'env_vars.h', | 129 'env_vars.h', |
| 130 'filter_policy.h', | 130 'filter_policy.h', |
| 131 'gears_api.h', | 131 'gears_api.h', |
| 132 'jpeg_codec.cc', | |
| 133 'jpeg_codec.h', | |
| 134 'json_value_serializer.cc', | 132 'json_value_serializer.cc', |
| 135 'json_value_serializer.h', | 133 'json_value_serializer.h', |
| 136 'jstemplate_builder.cc', | 134 'jstemplate_builder.cc', |
| 137 'jstemplate_builder.h', | 135 'jstemplate_builder.h', |
| 138 'l10n_util.cc', | 136 'l10n_util.cc', |
| 139 'l10n_util.h', | 137 'l10n_util.h', |
| 140 'libxml_utils.cc', | 138 'libxml_utils.cc', |
| 141 'libxml_utils.h', | 139 'libxml_utils.h', |
| 142 'logging_chrome.cc', | 140 'logging_chrome.cc', |
| 143 'logging_chrome.h', | 141 'logging_chrome.h', |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 './common.vsprops', | 296 './common.vsprops', |
| 299 '$(SolutionDir)../build/release.vsprops', | 297 '$(SolutionDir)../build/release.vsprops', |
| 300 ]) | 298 ]) |
| 301 | 299 |
| 302 p.AddFileConfig('../tools/build/win/precompiled.cc', | 300 p.AddFileConfig('../tools/build/win/precompiled.cc', |
| 303 'Debug|Win32', | 301 'Debug|Win32', |
| 304 tools=[ | 302 tools=[ |
| 305 MSVSTool('VCCLCompilerTool', | 303 MSVSTool('VCCLCompilerTool', |
| 306 UsePrecompiledHeader='1'), | 304 UsePrecompiledHeader='1'), |
| 307 ]) | 305 ]) |
| OLD | NEW |