OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 # All test files. After get_path_info they will be in absolute-path format. | 5 # All test files. After get_path_info they will be in absolute-path format. |
6 # This list is used to know when to re-trigger running this test. | 6 # This list is used to know when to re-trigger running this test. |
7 mini_installer_test_files = | 7 mini_installer_test_files = |
8 get_path_info([ | 8 get_path_info([ |
9 "chrome_helper.py", | 9 "chrome_helper.py", |
| 10 "cleaner_visitor.py", |
10 "config/chrome_canary_installed.prop", | 11 "config/chrome_canary_installed.prop", |
11 "config/chrome_canary_inuse.prop", | 12 "config/chrome_canary_inuse.prop", |
12 "config/chrome_canary_no_pv.prop", | 13 "config/chrome_canary_no_pv.prop", |
13 "config/chrome_canary_not_installed.prop", | 14 "config/chrome_canary_not_installed.prop", |
14 "config/chrome_canary_not_inuse.prop", | 15 "config/chrome_canary_not_inuse.prop", |
| 16 "config/chrome_canary_updated.prop", |
| 17 "config/chrome_multi_system_installed.prop", |
| 18 "config/chrome_multi_user_installed.prop", |
15 "config/chrome_system_installed.prop", | 19 "config/chrome_system_installed.prop", |
16 "config/chrome_system_inuse.prop", | 20 "config/chrome_system_inuse.prop", |
17 "config/chrome_system_no_pv.prop", | 21 "config/chrome_system_no_pv.prop", |
18 "config/chrome_system_not_installed.prop", | 22 "config/chrome_system_not_installed.prop", |
19 "config/chrome_system_not_inuse.prop", | 23 "config/chrome_system_not_inuse.prop", |
| 24 "config/chrome_system_updated.prop", |
| 25 "config/chrome_user_binaries_killed.prop", |
20 "config/chrome_user_installed.prop", | 26 "config/chrome_user_installed.prop", |
21 "config/chrome_user_inuse.prop", | 27 "config/chrome_user_inuse.prop", |
| 28 "config/chrome_user_killed.prop", |
22 "config/chrome_user_no_pv.prop", | 29 "config/chrome_user_no_pv.prop", |
23 "config/chrome_user_not_installed.prop", | 30 "config/chrome_user_not_installed.prop", |
24 "config/chrome_user_not_inuse.prop", | 31 "config/chrome_user_not_inuse.prop", |
| 32 "config/chrome_user_updated.prop", |
25 "config/config.config", | 33 "config/config.config", |
26 "file_verifier.py", | 34 "entry.py", |
| 35 "file.py", |
27 "launch_chrome.py", | 36 "launch_chrome.py", |
28 "process_verifier.py", | 37 "make_chrome_multi.py", |
| 38 "process.py", |
29 "quit_chrome.py", | 39 "quit_chrome.py", |
30 "registry_verifier.py", | 40 "registry.py", |
31 "test_installer.py", | 41 "test_installer.py", |
32 "uninstall_chrome.py", | 42 "uninstall_chrome.py", |
| 43 "update_lastrun.py", |
33 "variable_expander.py", | 44 "variable_expander.py", |
34 "verifier.py", | 45 "verifier_visitor.py", |
35 "verifier_runner.py", | 46 "state_walker.py", |
36 ], | 47 ], |
37 "abspath") | 48 "abspath") |
OLD | NEW |