| 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 '$BASE_DIR/gfx/using_base_gfx.scons', | 10 '$BASE_DIR/gfx/using_base_gfx.scons', |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 '$CHROME_DIR/common/animation_unittest.cc', | 211 '$CHROME_DIR/common/animation_unittest.cc', |
| 212 '$CHROME_DIR/common/bzip2_unittest.cc', | 212 '$CHROME_DIR/common/bzip2_unittest.cc', |
| 213 '$CHROME_DIR/common/chrome_plugin_unittest.cc', | 213 '$CHROME_DIR/common/chrome_plugin_unittest.cc', |
| 214 '$CHROME_DIR/common/gfx/emf_unittest.cc', | 214 '$CHROME_DIR/common/gfx/emf_unittest.cc', |
| 215 '$CHROME_DIR/common/gfx/icon_util_unittest.cc', | 215 '$CHROME_DIR/common/gfx/icon_util_unittest.cc', |
| 216 '$CHROME_DIR/common/ipc_message_unittest.cc', | 216 '$CHROME_DIR/common/ipc_message_unittest.cc', |
| 217 '$CHROME_DIR/common/ipc_sync_channel_unittest.cc', | 217 '$CHROME_DIR/common/ipc_sync_channel_unittest.cc', |
| 218 '$CHROME_DIR/common/ipc_sync_channel_unittest.h', | 218 '$CHROME_DIR/common/ipc_sync_channel_unittest.h', |
| 219 '$CHROME_DIR/common/ipc_sync_message_unittest.cc', | 219 '$CHROME_DIR/common/ipc_sync_message_unittest.cc', |
| 220 '$CHROME_DIR/common/ipc_sync_message_unittest.h', | 220 '$CHROME_DIR/common/ipc_sync_message_unittest.h', |
| 221 '$CHROME_DIR/common/jpeg_codec_unittest.cc', | |
| 222 '$CHROME_DIR/common/json_value_serializer_unittest.cc', | 221 '$CHROME_DIR/common/json_value_serializer_unittest.cc', |
| 223 '$CHROME_DIR/common/l10n_util_unittest.cc', | 222 '$CHROME_DIR/common/l10n_util_unittest.cc', |
| 224 '$CHROME_DIR/common/mru_cache_unittest.cc', | 223 '$CHROME_DIR/common/mru_cache_unittest.cc', |
| 225 '$CHROME_DIR/common/notification_service_unittest.cc', | 224 '$CHROME_DIR/common/notification_service_unittest.cc', |
| 226 '$CHROME_DIR/common/os_exchange_data_unittest.cc', | 225 '$CHROME_DIR/common/os_exchange_data_unittest.cc', |
| 227 '$CHROME_DIR/common/pref_member_unittest.cc', | 226 '$CHROME_DIR/common/pref_member_unittest.cc', |
| 228 '$CHROME_DIR/common/pref_service_unittest.cc', | 227 '$CHROME_DIR/common/pref_service_unittest.cc', |
| 229 '$CHROME_DIR/common/property_bag_unittest.cc', | 228 '$CHROME_DIR/common/property_bag_unittest.cc', |
| 230 '$CHROME_DIR/common/resource_dispatcher_unittest.cc', | 229 '$CHROME_DIR/common/resource_dispatcher_unittest.cc', |
| 231 '$CHROME_DIR/common/gfx/text_elider_unittest.cc', | 230 '$CHROME_DIR/common/gfx/text_elider_unittest.cc', |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 595 '../../third_party/hunspell/using_hunspell.vsprops', | 594 '../../third_party/hunspell/using_hunspell.vsprops', |
| 596 '../../../third_party/npapi/using_npapi.vsprops', | 595 '../../../third_party/npapi/using_npapi.vsprops', |
| 597 ]) | 596 ]) |
| 598 | 597 |
| 599 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', | 598 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', |
| 600 'Debug|Win32', | 599 'Debug|Win32', |
| 601 tools=[ | 600 tools=[ |
| 602 MSVSTool('VCCLCompilerTool', | 601 MSVSTool('VCCLCompilerTool', |
| 603 UsePrecompiledHeader='1'), | 602 UsePrecompiledHeader='1'), |
| 604 ]) | 603 ]) |
| OLD | NEW |