| 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 Import('bdict_reader_o', 'bdict_writer_o') | 6 Import('bdict_reader_o', 'bdict_writer_o') |
| 7 | 7 |
| 8 env = env.Clone() | 8 env = env.Clone() |
| 9 | 9 |
| 10 env.SConscript([ | 10 env.SConscript([ |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 '$CHROME_DIR/browser/tabs/tab_strip_model_unittest.cc', | 422 '$CHROME_DIR/browser/tabs/tab_strip_model_unittest.cc', |
| 423 '$CHROME_DIR/browser/views/bookmark_editor_view_unittest.cc', | 423 '$CHROME_DIR/browser/views/bookmark_editor_view_unittest.cc', |
| 424 '$CHROME_DIR/browser/views/keyword_editor_view_unittest.cc', | 424 '$CHROME_DIR/browser/views/keyword_editor_view_unittest.cc', |
| 425 '$CHROME_DIR/browser/visitedlink_unittest.cc', | 425 '$CHROME_DIR/browser/visitedlink_unittest.cc', |
| 426 '$CHROME_DIR/browser/webdata/web_database_unittest.cc', | 426 '$CHROME_DIR/browser/webdata/web_database_unittest.cc', |
| 427 '$CHROME_DIR/browser/window_sizer_unittest.cc', | 427 '$CHROME_DIR/browser/window_sizer_unittest.cc', |
| 428 '$CHROME_DIR/common/chrome_plugin_unittest.cc', | 428 '$CHROME_DIR/common/chrome_plugin_unittest.cc', |
| 429 '$CHROME_DIR/common/gfx/emf_unittest.cc', | 429 '$CHROME_DIR/common/gfx/emf_unittest.cc', |
| 430 '$CHROME_DIR/common/gfx/icon_util_unittest.cc', | 430 '$CHROME_DIR/common/gfx/icon_util_unittest.cc', |
| 431 '$CHROME_DIR/common/os_exchange_data_unittest.cc', | 431 '$CHROME_DIR/common/os_exchange_data_unittest.cc', |
| 432 '$CHROME_DIR/common/pref_service_unittest.cc', | |
| 433 '$CHROME_DIR/common/time_format_unittest.cc', | 432 '$CHROME_DIR/common/time_format_unittest.cc', |
| 434 '$CHROME_DIR/common/win_util_unittest.cc', | 433 '$CHROME_DIR/common/win_util_unittest.cc', |
| 435 '$CHROME_DIR/test/browser_with_test_window_test.cc', | 434 '$CHROME_DIR/test/browser_with_test_window_test.cc', |
| 436 '$CHROME_DIR/test/test_tab_contents.cc', | 435 '$CHROME_DIR/test/test_tab_contents.cc', |
| 437 '$CHROME_DIR/views/focus_manager_unittest.cc', | 436 '$CHROME_DIR/views/focus_manager_unittest.cc', |
| 438 '$CHROME_DIR/views/grid_layout_unittest.cc', | 437 '$CHROME_DIR/views/grid_layout_unittest.cc', |
| 439 '$CHROME_DIR/views/label_unittest.cc', | 438 '$CHROME_DIR/views/label_unittest.cc', |
| 440 '$CHROME_DIR/views/table_view_unittest.cc', | 439 '$CHROME_DIR/views/table_view_unittest.cc', |
| 441 '$CHROME_DIR/views/view_unittest.cc', | 440 '$CHROME_DIR/views/view_unittest.cc', |
| 442 | 441 |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 '../../third_party/hunspell/using_hunspell.vsprops', | 568 '../../third_party/hunspell/using_hunspell.vsprops', |
| 570 '../../../third_party/npapi/using_npapi.vsprops', | 569 '../../../third_party/npapi/using_npapi.vsprops', |
| 571 ]) | 570 ]) |
| 572 | 571 |
| 573 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', | 572 p.AddFileConfig('../../tools/build/win/precompiled_wtl.cc', |
| 574 'Debug|Win32', | 573 'Debug|Win32', |
| 575 tools=[ | 574 tools=[ |
| 576 MSVSTool('VCCLCompilerTool', | 575 MSVSTool('VCCLCompilerTool', |
| 577 UsePrecompiledHeader='1'), | 576 UsePrecompiledHeader='1'), |
| 578 ]) | 577 ]) |
| OLD | NEW |