| 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_test') | 5 Import('env_test') |
| 6 | 6 |
| 7 env_test = env_test.Clone() | 7 env_test = env_test.Clone() |
| 8 | 8 |
| 9 env_test.Prepend( | 9 env_test.Prepend( |
| 10 CPPPATH = [ | 10 CPPPATH = [ |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'views/views.lib', | 101 'views/views.lib', |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 unit_test_files = [ | 104 unit_test_files = [ |
| 105 'browser/autocomplete/autocomplete_unittest.cc', | 105 'browser/autocomplete/autocomplete_unittest.cc', |
| 106 'browser/autocomplete/history_contents_provider_unittest.cc', | 106 'browser/autocomplete/history_contents_provider_unittest.cc', |
| 107 'browser/autocomplete/history_url_provider_unittest.cc', | 107 'browser/autocomplete/history_url_provider_unittest.cc', |
| 108 'browser/autocomplete/keyword_provider_unittest.cc', | 108 'browser/autocomplete/keyword_provider_unittest.cc', |
| 109 'browser/back_forward_menu_model_unittest.cc', | 109 'browser/back_forward_menu_model_unittest.cc', |
| 110 'browser/bookmark_bar_context_menu_controller_test.cc', | 110 'browser/bookmark_bar_context_menu_controller_test.cc', |
| 111 'browser/bookmark_bar_model_unittest.cc', | 111 'browser/bookmarks/bookmark_bar_model_unittest.cc', |
| 112 'browser/bookmark_drag_data_unittest.cc', | 112 'browser/bookmarks/bookmark_drag_data_unittest.cc', |
| 113 'browser/cache_manager_host_unittest.cc', | 113 'browser/cache_manager_host_unittest.cc', |
| 114 'browser/chrome_thread_unittest.cc', | 114 'browser/chrome_thread_unittest.cc', |
| 115 'browser/controller_unittest.cc', | 115 'browser/controller_unittest.cc', |
| 116 'browser/download_manager_unittest.cc', | 116 'browser/download_manager_unittest.cc', |
| 117 'browser/encryptor_unittest.cc', | 117 'browser/encryptor_unittest.cc', |
| 118 'browser/firefox_importer_unittest.cc', | 118 'browser/firefox_importer_unittest.cc', |
| 119 'browser/google_url_tracker_unittest.cc', | 119 'browser/google_url_tracker_unittest.cc', |
| 120 'browser/history/expire_history_backend_unittest.cc', | 120 'browser/history/expire_history_backend_unittest.cc', |
| 121 'browser/history/history_backend_unittest.cc', | 121 'browser/history/history_backend_unittest.cc', |
| 122 'browser/history/history_querying_unittest.cc', | 122 'browser/history/history_querying_unittest.cc', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 | 210 |
| 211 env_test['BROWSER_RES'], | 211 env_test['BROWSER_RES'], |
| 212 env_test['TEST_DATA_RES'], | 212 env_test['TEST_DATA_RES'], |
| 213 ] | 213 ] |
| 214 | 214 |
| 215 unit_tests = env_test.ChromeTestProgram('unit_tests', unit_test_files + libs) | 215 unit_tests = env_test.ChromeTestProgram('unit_tests', unit_test_files + libs) |
| 216 | 216 |
| 217 i = env_test.Install('$TARGET_ROOT', unit_tests) | 217 i = env_test.Install('$TARGET_ROOT', unit_tests) |
| 218 Alias('chrome', i) | 218 Alias('chrome', i) |
| 219 | 219 |
| OLD | NEW |