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(use_cros_fe) |
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 |
11 closure_library_dir = | 11 closure_library_dir = |
12 "//chrome/third_party/chromevox/third_party/closure-library/closure/goog" | 12 "//chrome/third_party/chromevox/third_party/closure-library/closure/goog" |
13 | 13 |
14 jsbundler_modules = rebase_path([ | 14 jsbundler_modules = rebase_path([ |
15 "depstree.py", | 15 "depstree.py", |
16 "source.py", | 16 "source.py", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "string/string.js", | 195 "string/string.js", |
196 "dom/nodetype.js", | 196 "dom/nodetype.js", |
197 "base.js", | 197 "base.js", |
198 "asserts/asserts.js", | 198 "asserts/asserts.js", |
199 "debug/error.js", | 199 "debug/error.js", |
200 "object/object.js", | 200 "object/object.js", |
201 ] | 201 ] |
202 | 202 |
203 closure_library_modules = | 203 closure_library_modules = |
204 rebase_path(relative_closure_library_modules, ".", closure_library_dir) | 204 rebase_path(relative_closure_library_modules, ".", closure_library_dir) |
OLD | NEW |