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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 "host/chrome/braille.js", | 140 "host/chrome/braille.js", |
141 "host/chrome/braille_background.js", | 141 "host/chrome/braille_background.js", |
142 "host/chrome/earcons.js", | 142 "host/chrome/earcons.js", |
143 "host/chrome/earcons_background.js", | 143 "host/chrome/earcons_background.js", |
144 "host/chrome/extension_bridge.js", | 144 "host/chrome/extension_bridge.js", |
145 "host/chrome/host.js", | 145 "host/chrome/host.js", |
146 "host/chrome/mathjax.js", | 146 "host/chrome/mathjax.js", |
147 "host/chrome/tts.js", | 147 "host/chrome/tts.js", |
148 "host/chrome/tts_background.js", | 148 "host/chrome/tts_background.js", |
149 "host/chrome/tts_base.js", | 149 "host/chrome/tts_base.js", |
150 "host/interface/abstract_braille.js", | |
151 "host/interface/abstract_earcons.js", | 150 "host/interface/abstract_earcons.js", |
152 "host/interface/abstract_host.js", | 151 "host/interface/abstract_host.js", |
153 "host/interface/abstract_mathjax.js", | 152 "host/interface/abstract_mathjax.js", |
154 "host/interface/abstract_tts.js", | 153 "host/interface/abstract_tts.js", |
155 "host/interface/braille_interface.js", | 154 "host/interface/braille_interface.js", |
156 "host/interface/host_factory.js", | 155 "host/interface/host_factory.js", |
157 "host/interface/mathjax_interface.js", | 156 "host/interface/mathjax_interface.js", |
158 "host/interface/tts_interface.js", | 157 "host/interface/tts_interface.js", |
159 "speech_rules/base_rule_store.js", | 158 "speech_rules/base_rule_store.js", |
160 "speech_rules/math_simple_store.js", | 159 "speech_rules/math_simple_store.js", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "string/string.js", | 194 "string/string.js", |
196 "dom/nodetype.js", | 195 "dom/nodetype.js", |
197 "base.js", | 196 "base.js", |
198 "asserts/asserts.js", | 197 "asserts/asserts.js", |
199 "debug/error.js", | 198 "debug/error.js", |
200 "object/object.js", | 199 "object/object.js", |
201 ] | 200 ] |
202 | 201 |
203 closure_library_modules = | 202 closure_library_modules = |
204 rebase_path(relative_closure_library_modules, ".", closure_library_dir) | 203 rebase_path(relative_closure_library_modules, ".", closure_library_dir) |
OLD | NEW |