| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "chromevox/injected/init_document.js", | 53 "chromevox/injected/init_document.js", |
| 54 "chromevox/injected/init_globals.js", | 54 "chromevox/injected/init_globals.js", |
| 55 "chromevox/injected/initial_speech.js", | 55 "chromevox/injected/initial_speech.js", |
| 56 "chromevox/injected/keyboard_handler.js", | 56 "chromevox/injected/keyboard_handler.js", |
| 57 "chromevox/injected/live_regions.js", | 57 "chromevox/injected/live_regions.js", |
| 58 "chromevox/injected/navigation_history.js", | 58 "chromevox/injected/navigation_history.js", |
| 59 "chromevox/injected/navigation_manager.js", | 59 "chromevox/injected/navigation_manager.js", |
| 60 "chromevox/injected/navigation_shifter.js", | 60 "chromevox/injected/navigation_shifter.js", |
| 61 "chromevox/injected/navigation_speaker.js", | 61 "chromevox/injected/navigation_speaker.js", |
| 62 "chromevox/injected/node_breadcrumb.js", | 62 "chromevox/injected/node_breadcrumb.js", |
| 63 "chromevox/injected/pdf_processor.js", | |
| 64 "chromevox/injected/script_installer.js", | 63 "chromevox/injected/script_installer.js", |
| 65 "chromevox/injected/serializer.js", | 64 "chromevox/injected/serializer.js", |
| 66 "chromevox/injected/ui/braille_overlay_widget.js", | 65 "chromevox/injected/ui/braille_overlay_widget.js", |
| 67 "chromevox/injected/ui/context_menu_widget.js", | 66 "chromevox/injected/ui/context_menu_widget.js", |
| 68 "chromevox/injected/ui/keyboard_help_widget.js", | 67 "chromevox/injected/ui/keyboard_help_widget.js", |
| 69 "chromevox/injected/ui/node_search_widget.js", | 68 "chromevox/injected/ui/node_search_widget.js", |
| 70 "chromevox/injected/ui/overlay_widget.js", | 69 "chromevox/injected/ui/overlay_widget.js", |
| 71 "chromevox/injected/ui/search_widget.js", | 70 "chromevox/injected/ui/search_widget.js", |
| 72 "chromevox/injected/ui/select_widget.js", | 71 "chromevox/injected/ui/select_widget.js", |
| 73 "chromevox/injected/ui/spoken_messages.js", | 72 "chromevox/injected/ui/spoken_messages.js", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 "string/string.js", | 209 "string/string.js", |
| 211 "dom/nodetype.js", | 210 "dom/nodetype.js", |
| 212 "base.js", | 211 "base.js", |
| 213 "asserts/asserts.js", | 212 "asserts/asserts.js", |
| 214 "debug/error.js", | 213 "debug/error.js", |
| 215 "object/object.js", | 214 "object/object.js", |
| 216 ] | 215 ] |
| 217 | 216 |
| 218 closure_library_modules = | 217 closure_library_modules = |
| 219 rebase_path(relative_closure_library_modules, ".", closure_library_dir) | 218 rebase_path(relative_closure_library_modules, ".", closure_library_dir) |
| OLD | NEW |