| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "cvox2/background/next_earcons.js", | 139 "cvox2/background/next_earcons.js", |
| 140 "cvox2/background/notifications.js", | 140 "cvox2/background/notifications.js", |
| 141 "cvox2/background/output.js", | 141 "cvox2/background/output.js", |
| 142 "cvox2/background/panel.js", | 142 "cvox2/background/panel.js", |
| 143 "cvox2/background/panel_command.js", | 143 "cvox2/background/panel_command.js", |
| 144 "cvox2/background/panel_menu.js", | 144 "cvox2/background/panel_menu.js", |
| 145 "cvox2/background/panel_menu_item.js", | 145 "cvox2/background/panel_menu_item.js", |
| 146 "cvox2/background/stubs.js", | 146 "cvox2/background/stubs.js", |
| 147 "cvox2/background/tabs_automation_handler.js", | 147 "cvox2/background/tabs_automation_handler.js", |
| 148 "cvox2/background/tree_walker.js", | 148 "cvox2/background/tree_walker.js", |
| 149 "cvox2/background/tutorial.js", |
| 149 "cvox2/injected/keyboard_handler.js", | 150 "cvox2/injected/keyboard_handler.js", |
| 150 "cvox2/injected/loader.js", | 151 "cvox2/injected/loader.js", |
| 151 "extensions/searchvox/abstract_result.js", | 152 "extensions/searchvox/abstract_result.js", |
| 152 "extensions/searchvox/constants.js", | 153 "extensions/searchvox/constants.js", |
| 153 "extensions/searchvox/context_menu.js", | 154 "extensions/searchvox/context_menu.js", |
| 154 "extensions/searchvox/loader.js", | 155 "extensions/searchvox/loader.js", |
| 155 "extensions/searchvox/results.js", | 156 "extensions/searchvox/results.js", |
| 156 "extensions/searchvox/search.js", | 157 "extensions/searchvox/search.js", |
| 157 "extensions/searchvox/search_tools.js", | 158 "extensions/searchvox/search_tools.js", |
| 158 "extensions/searchvox/util.js", | 159 "extensions/searchvox/util.js", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 "string/string.js", | 214 "string/string.js", |
| 214 "dom/nodetype.js", | 215 "dom/nodetype.js", |
| 215 "base.js", | 216 "base.js", |
| 216 "asserts/asserts.js", | 217 "asserts/asserts.js", |
| 217 "debug/error.js", | 218 "debug/error.js", |
| 218 "object/object.js", | 219 "object/object.js", |
| 219 ] | 220 ] |
| 220 | 221 |
| 221 closure_library_modules = | 222 closure_library_modules = |
| 222 rebase_path(relative_closure_library_modules, ".", closure_library_dir) | 223 rebase_path(relative_closure_library_modules, ".", closure_library_dir) |
| OLD | NEW |