Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(745)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox.gni

Issue 1670813003: DevTools: do not use platform/ to load injected scripts into inspector/v8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated the chromevox script Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/tools/jsbundler.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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",
17 "treescan.py", 17 "treescan.py",
18 ], 18 ],
19 ".", 19 ".",
20 "$closure_library_dir/../bin/build") 20 "$closure_library_dir/../bin/build")
21 jsbundler_modules += [ "//third_party/WebKit/Source/build/scripts/rjsmin.py" ] 21 jsbundler_modules +=
22 [ "//third_party/WebKit/Source/devtools/scripts/rjsmin.py" ]
22 23
23 # List of all modules that are included in one or more of the production 24 # List of all modules that are included in one or more of the production
24 # chromevox scripts. 25 # chromevox scripts.
25 chromevox_modules = [ 26 chromevox_modules = [
26 "braille/braille_display_manager.js", 27 "braille/braille_display_manager.js",
27 "braille/braille_input_handler.js", 28 "braille/braille_input_handler.js",
28 "braille/braille_key_types.js", 29 "braille/braille_key_types.js",
29 "braille/braille_table.js", 30 "braille/braille_table.js",
30 "braille/braille_translator_manager.js", 31 "braille/braille_translator_manager.js",
31 "braille/expanding_braille_translator.js", 32 "braille/expanding_braille_translator.js",
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 "string/string.js", 207 "string/string.js",
207 "dom/nodetype.js", 208 "dom/nodetype.js",
208 "base.js", 209 "base.js",
209 "asserts/asserts.js", 210 "asserts/asserts.js",
210 "debug/error.js", 211 "debug/error.js",
211 "object/object.js", 212 "object/object.js",
212 ] 213 ]
213 214
214 closure_library_modules = 215 closure_library_modules =
215 rebase_path(relative_closure_library_modules, ".", closure_library_dir) 216 rebase_path(relative_closure_library_modules, ".", closure_library_dir)
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/chromevox/tools/jsbundler.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698