| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 '$CHROME_DIR/common/ipc_test_sink.cc', | 288 '$CHROME_DIR/common/ipc_test_sink.cc', |
| 289 '$CHROME_DIR/common/ipc_test_sink.h', | 289 '$CHROME_DIR/common/ipc_test_sink.h', |
| 290 '$CHROME_DIR/tools/build/win/precompiled_wtl$OBJSUFFIX', | 290 '$CHROME_DIR/tools/build/win/precompiled_wtl$OBJSUFFIX', |
| 291 '$CHROME_DIR/tools/build/win/precompiled_wtl.h', | 291 '$CHROME_DIR/tools/build/win/precompiled_wtl.h', |
| 292 'run_all_unittests.cc', | 292 'run_all_unittests.cc', |
| 293 '$CHROME_DIR/test/test_notification_tracker.cc', | 293 '$CHROME_DIR/test/test_notification_tracker.cc', |
| 294 '$CHROME_DIR/test/test_notification_tracker.h', | 294 '$CHROME_DIR/test/test_notification_tracker.h', |
| 295 '$CHROME_DIR/test/testing_browser_process.h', | 295 '$CHROME_DIR/test/testing_browser_process.h', |
| 296 '$CHROME_DIR/test/testing_profile.cc', | 296 '$CHROME_DIR/test/testing_profile.cc', |
| 297 '$CHROME_DIR/test/testing_profile.h', | 297 '$CHROME_DIR/test/testing_profile.h', |
| 298 '$CHROME_DIR/../net/url_request/url_request_test_job$OBJSUFFIX', | 298 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX', |
| 299 '$CHROME_DIR/../net/url_request/url_request_test_job.h', | 299 '$NET_DIR/url_request/url_request_test_job.h', |
| 300 ]), | 300 ]), |
| 301 MSVSFilter('views', [ | 301 MSVSFilter('views', [ |
| 302 '$CHROME_DIR/views/focus_manager_unittest.cc', | 302 '$CHROME_DIR/views/focus_manager_unittest.cc', |
| 303 '$CHROME_DIR/views/grid_layout_unittest.cc', | 303 '$CHROME_DIR/views/grid_layout_unittest.cc', |
| 304 '$CHROME_DIR/views/label_unittest.cc', | 304 '$CHROME_DIR/views/label_unittest.cc', |
| 305 '$CHROME_DIR/views/table_view_unittest.cc', | 305 '$CHROME_DIR/views/table_view_unittest.cc', |
| 306 '$CHROME_DIR/views/tree_node_iterator_unittest.cc', | 306 '$CHROME_DIR/views/tree_node_iterator_unittest.cc', |
| 307 '$CHROME_DIR/views/view_unittest.cc', | 307 '$CHROME_DIR/views/view_unittest.cc', |
| 308 ]), | 308 ]), |
| 309 ]) | 309 ]) |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 '../../third_party/hunspell/using_hunspell.vsprops', | 579 '../../third_party/hunspell/using_hunspell.vsprops', |
| 580 '../../../third_party/npapi/using_npapi.vsprops', | 580 '../../../third_party/npapi/using_npapi.vsprops', |
| 581 ]) | 581 ]) |
| 582 | 582 |
| 583 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', | 583 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', |
| 584 'Debug|Win32', | 584 'Debug|Win32', |
| 585 tools=[ | 585 tools=[ |
| 586 MSVSTool('VCCLCompilerTool', | 586 MSVSTool('VCCLCompilerTool', |
| 587 UsePrecompiledHeader='1'), | 587 UsePrecompiledHeader='1'), |
| 588 ]) | 588 ]) |
| OLD | NEW |