OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//chrome/test/base/js2gtest.gni") | 8 import("//chrome/test/base/js2gtest.gni") |
9 import("run_jsbundler.gni") | 9 import("run_jsbundler.gni") |
10 | 10 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 "cvox2/background/keyboard_handler.js", | 139 "cvox2/background/keyboard_handler.js", |
140 "cvox2/background/live_regions.js", | 140 "cvox2/background/live_regions.js", |
141 "cvox2/background/media_automation_handler.js", | 141 "cvox2/background/media_automation_handler.js", |
142 "cvox2/background/next_earcons.js", | 142 "cvox2/background/next_earcons.js", |
143 "cvox2/background/notifications.js", | 143 "cvox2/background/notifications.js", |
144 "cvox2/background/output.js", | 144 "cvox2/background/output.js", |
145 "cvox2/background/panel.js", | 145 "cvox2/background/panel.js", |
146 "cvox2/background/panel_command.js", | 146 "cvox2/background/panel_command.js", |
147 "cvox2/background/panel_menu.js", | 147 "cvox2/background/panel_menu.js", |
148 "cvox2/background/panel_menu_item.js", | 148 "cvox2/background/panel_menu_item.js", |
| 149 "cvox2/background/recovery_strategy.js", |
149 "cvox2/background/tabs_automation_handler.js", | 150 "cvox2/background/tabs_automation_handler.js", |
150 "cvox2/background/tree_walker.js", | 151 "cvox2/background/tree_walker.js", |
151 "cvox2/background/tutorial.js", | 152 "cvox2/background/tutorial.js", |
152 "cvox2/injected/keyboard_handler.js", | 153 "cvox2/injected/keyboard_handler.js", |
153 "cvox2/injected/loader.js", | 154 "cvox2/injected/loader.js", |
154 "extensions/searchvox/abstract_result.js", | 155 "extensions/searchvox/abstract_result.js", |
155 "extensions/searchvox/constants.js", | 156 "extensions/searchvox/constants.js", |
156 "extensions/searchvox/context_menu.js", | 157 "extensions/searchvox/context_menu.js", |
157 "extensions/searchvox/loader.js", | 158 "extensions/searchvox/loader.js", |
158 "extensions/searchvox/results.js", | 159 "extensions/searchvox/results.js", |
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 "braille/braille_translator_manager_test.extjs", | 673 "braille/braille_translator_manager_test.extjs", |
673 "braille/liblouis_test.extjs", | 674 "braille/liblouis_test.extjs", |
674 "cvox2/background/automation_util_test.extjs", | 675 "cvox2/background/automation_util_test.extjs", |
675 "cvox2/background/background_test.extjs", | 676 "cvox2/background/background_test.extjs", |
676 "cvox2/background/cursors_test.extjs", | 677 "cvox2/background/cursors_test.extjs", |
677 "cvox2/background/editing_test.extjs", | 678 "cvox2/background/editing_test.extjs", |
678 "cvox2/background/i_search_test.extjs", | 679 "cvox2/background/i_search_test.extjs", |
679 "cvox2/background/live_regions_test.extjs", | 680 "cvox2/background/live_regions_test.extjs", |
680 "cvox2/background/output_test.extjs", | 681 "cvox2/background/output_test.extjs", |
681 "cvox2/background/panel_test.extjs", | 682 "cvox2/background/panel_test.extjs", |
| 683 "cvox2/background/recovery_strategy_test.extjs", |
682 "cvox2/background/tree_walker_test.extjs", | 684 "cvox2/background/tree_walker_test.extjs", |
683 "host/chrome/tts_background_test.extjs", | 685 "host/chrome/tts_background_test.extjs", |
684 ] | 686 ] |
685 gen_include_files = [ | 687 gen_include_files = [ |
686 "testing/assert_additions.js", | 688 "testing/assert_additions.js", |
687 "testing/callback_helper.js", | 689 "testing/callback_helper.js", |
688 "testing/chromevox_e2e_test_base.js", | 690 "testing/chromevox_e2e_test_base.js", |
689 "testing/chromevox_next_e2e_test_base.js", | 691 "testing/chromevox_next_e2e_test_base.js", |
690 "testing/mock_feedback.js", | 692 "testing/mock_feedback.js", |
691 ] | 693 ] |
692 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 694 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
693 } | 695 } |
OLD | NEW |