| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 'test/automation/automation.lib', | 86 'test/automation/automation.lib', |
| 87 ] | 87 ] |
| 88 | 88 |
| 89 ui_test_files = [ | 89 ui_test_files = [ |
| 90 'app/chrome_main_uitest.cc', | 90 'app/chrome_main_uitest.cc', |
| 91 'browser/browser_uitest.cc', | 91 'browser/browser_uitest.cc', |
| 92 'browser/crash_recovery_uitest.cc', | 92 'browser/crash_recovery_uitest.cc', |
| 93 'browser/download/download_uitest.cc', | 93 'browser/download/download_uitest.cc', |
| 94 'browser/download/save_page_uitest.cc', | 94 'browser/download/save_page_uitest.cc', |
| 95 'browser/errorpage_uitest.cc', | 95 'browser/errorpage_uitest.cc', |
| 96 'browser/find_in_page_controller_uitest.cc', | |
| 97 'browser/history/redirect_uitest.cc', | 96 'browser/history/redirect_uitest.cc', |
| 98 'browser/iframe_uitest.cc', | 97 'browser/iframe_uitest.cc', |
| 99 'browser/images_uitest.cc', | 98 'browser/images_uitest.cc', |
| 100 'browser/interstitial_page_uitest.cc', | 99 'browser/interstitial_page_uitest.cc', |
| 101 'browser/locale_tests_uitest.cc', | 100 'browser/locale_tests_uitest.cc', |
| 102 'browser/login_prompt_uitest.cc', | 101 'browser/login_prompt_uitest.cc', |
| 103 'browser/metrics_service_uitest.cc', | 102 'browser/metrics_service_uitest.cc', |
| 104 'browser/printing/printing_layout_uitest.cc', | 103 'browser/printing/printing_layout_uitest.cc', |
| 105 'browser/resource_dispatcher_host_uitest.cc', | 104 'browser/resource_dispatcher_host_uitest.cc', |
| 106 'browser/sanity_uitest.cc', | 105 'browser/sanity_uitest.cc', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 127 'test/ui/omnibox_uitest.cc', | 126 'test/ui/omnibox_uitest.cc', |
| 128 'test/ui/run_all_unittests.cc', | 127 'test/ui/run_all_unittests.cc', |
| 129 'test/ui/sandbox_uitests.cc', | 128 'test/ui/sandbox_uitests.cc', |
| 130 'test/ui/ui_test.cc', | 129 'test/ui/ui_test.cc', |
| 131 'test/ui/ui_test_suite.cc', | 130 'test/ui/ui_test_suite.cc', |
| 132 'test/ui/history_uitest.cc', | 131 'test/ui/history_uitest.cc', |
| 133 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', | 132 '$CHROME_DIR/test/test_file_util$OBJSUFFIX', |
| 134 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX', | 133 '$NET_DIR/url_request/url_request_test_job$OBJSUFFIX', |
| 135 ] | 134 ] |
| 136 | 135 |
| 136 if env_test['PLATFORM'] == 'win32': |
| 137 ui_test_files.extend([ |
| 138 'find_bar_win_interactive_uitest.cc', |
| 139 'find_bar_win_uitest.cc', |
| 140 ]) |
| 141 |
| 137 ui_tests = env_test.ChromeTestProgram('ui_tests', ui_test_files + libs) | 142 ui_tests = env_test.ChromeTestProgram('ui_tests', ui_test_files + libs) |
| 138 | 143 |
| 139 i = env_test.Install('$TARGET_ROOT', ui_tests) | 144 i = env_test.Install('$TARGET_ROOT', ui_tests) |
| 140 Alias('chrome', i) | 145 Alias('chrome', i) |
| 141 | 146 |
| OLD | NEW |