| 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 "config/chrome_beta_installed.prop", |
| 11 "config/chrome_beta_no_pv.prop", |
| 12 "config/chrome_beta_not_installed.prop", |
| 13 "config/chrome_beta_not_inuse.prop", |
| 10 "config/chrome_canary_installed.prop", | 14 "config/chrome_canary_installed.prop", |
| 11 "config/chrome_canary_inuse.prop", | 15 "config/chrome_canary_inuse.prop", |
| 12 "config/chrome_canary_no_pv.prop", | 16 "config/chrome_canary_no_pv.prop", |
| 13 "config/chrome_canary_not_installed.prop", | 17 "config/chrome_canary_not_installed.prop", |
| 14 "config/chrome_canary_not_inuse.prop", | 18 "config/chrome_canary_not_inuse.prop", |
| 19 "config/chrome_dev_installed.prop", |
| 20 "config/chrome_dev_no_pv.prop", |
| 21 "config/chrome_dev_not_installed.prop", |
| 22 "config/chrome_dev_not_inuse.prop", |
| 15 "config/chrome_system_installed.prop", | 23 "config/chrome_system_installed.prop", |
| 16 "config/chrome_system_inuse.prop", | 24 "config/chrome_system_inuse.prop", |
| 17 "config/chrome_system_no_pv.prop", | 25 "config/chrome_system_no_pv.prop", |
| 18 "config/chrome_system_not_installed.prop", | 26 "config/chrome_system_not_installed.prop", |
| 19 "config/chrome_system_not_inuse.prop", | 27 "config/chrome_system_not_inuse.prop", |
| 20 "config/chrome_user_installed.prop", | 28 "config/chrome_user_installed.prop", |
| 21 "config/chrome_user_inuse.prop", | 29 "config/chrome_user_inuse.prop", |
| 22 "config/chrome_user_no_pv.prop", | 30 "config/chrome_user_no_pv.prop", |
| 23 "config/chrome_user_not_installed.prop", | 31 "config/chrome_user_not_installed.prop", |
| 24 "config/chrome_user_not_inuse.prop", | 32 "config/chrome_user_not_inuse.prop", |
| 25 "config/config.config", | 33 "config/config.config", |
| 26 "file_verifier.py", | 34 "file_verifier.py", |
| 27 "launch_chrome.py", | 35 "launch_chrome.py", |
| 28 "process_verifier.py", | 36 "process_verifier.py", |
| 29 "quit_chrome.py", | 37 "quit_chrome.py", |
| 30 "registry_verifier.py", | 38 "registry_verifier.py", |
| 31 "test_installer.py", | 39 "test_installer.py", |
| 32 "uninstall_chrome.py", | 40 "uninstall_chrome.py", |
| 33 "variable_expander.py", | 41 "variable_expander.py", |
| 34 "verifier.py", | 42 "verifier.py", |
| 35 "verifier_runner.py", | 43 "verifier_runner.py", |
| 36 ], | 44 ], |
| 37 "abspath") | 45 "abspath") |
| OLD | NEW |