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 # Common variables shared amongst all ChromeVox targets. | 4 # Common variables shared amongst all ChromeVox targets. |
5 | 5 |
6 assert(is_chromeos) | 6 assert(is_chromeos) |
7 | 7 |
8 # TODO(plundblad): Move the below variables to BUILD.gn when crbug.com/395883 | 8 # TODO(plundblad): Move the below variables to BUILD.gn when crbug.com/395883 |
9 # is resolved. | 9 # is resolved. |
10 | 10 |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 "common/time_widget.js", | 119 "common/time_widget.js", |
120 "common/traverse_content.js", | 120 "common/traverse_content.js", |
121 "common/traverse_math.js", | 121 "common/traverse_math.js", |
122 "common/traverse_table.js", | 122 "common/traverse_table.js", |
123 "common/traverse_util.js", | 123 "common/traverse_util.js", |
124 "common/xpath_util.js", | 124 "common/xpath_util.js", |
125 "cvox2/background/automation_predicate.js", | 125 "cvox2/background/automation_predicate.js", |
126 "cvox2/background/automation_util.js", | 126 "cvox2/background/automation_util.js", |
127 "cvox2/background/background.js", | 127 "cvox2/background/background.js", |
128 "cvox2/background/base_automation_handler.js", | 128 "cvox2/background/base_automation_handler.js", |
| 129 "cvox2/background/chromevox_state.js", |
129 "cvox2/background/cursors.js", | 130 "cvox2/background/cursors.js", |
130 "cvox2/background/desktop_automation_handler.js", | 131 "cvox2/background/desktop_automation_handler.js", |
131 "cvox2/background/earcon_engine.js", | 132 "cvox2/background/earcon_engine.js", |
| 133 "cvox2/background/live_regions.js", |
132 "cvox2/background/next_earcons.js", | 134 "cvox2/background/next_earcons.js", |
133 "cvox2/background/output.js", | 135 "cvox2/background/output.js", |
134 "cvox2/background/panel.js", | 136 "cvox2/background/panel.js", |
135 "cvox2/background/panel_command.js", | 137 "cvox2/background/panel_command.js", |
136 "cvox2/background/tabs_automation_handler.js", | 138 "cvox2/background/tabs_automation_handler.js", |
137 "extensions/searchvox/abstract_result.js", | 139 "extensions/searchvox/abstract_result.js", |
138 "extensions/searchvox/constants.js", | 140 "extensions/searchvox/constants.js", |
139 "extensions/searchvox/context_menu.js", | 141 "extensions/searchvox/context_menu.js", |
140 "extensions/searchvox/loader.js", | 142 "extensions/searchvox/loader.js", |
141 "extensions/searchvox/results.js", | 143 "extensions/searchvox/results.js", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 "string/string.js", | 201 "string/string.js", |
200 "dom/nodetype.js", | 202 "dom/nodetype.js", |
201 "base.js", | 203 "base.js", |
202 "asserts/asserts.js", | 204 "asserts/asserts.js", |
203 "debug/error.js", | 205 "debug/error.js", |
204 "object/object.js", | 206 "object/object.js", |
205 ] | 207 ] |
206 | 208 |
207 closure_library_modules = | 209 closure_library_modules = |
208 rebase_path(relative_closure_library_modules, ".", closure_library_dir) | 210 rebase_path(relative_closure_library_modules, ".", closure_library_dir) |
OLD | NEW |