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

Side by Side Diff: compiled_resources.py

Issue 418663002: Typecheck JS files for chrome://help before doing import transition (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@json_to_pydict
Patch Set: Fixed previous comments Created 6 years, 5 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "name": "focus_manager",
4 "sources": [
5 "ui/webui/resources/js/cr/ui/focus_manager.js",
6 ],
7 "depends": [
8 "ui/webui/resources/js/assert.js",
9 "ui/webui/resources/js/cr.js",
10 ],
11 "externs": [
12 ]
13 },
14 # TODO(vitalyp): compile chrome/browser/resources/uber/uber.js
15 {
16 "name": "uber_utils",
17 "sources": [
18 "chrome/browser/resources/uber/uber_utils.js",
19 ],
20 "depends": [
21 "ui/webui/resources/js/cr.js",
22 "ui/webui/resources/js/util.js",
23 "ui/webui/resources/js/load_time_data.js",
24 "chrome/browser/resources/uber/uber_utils.js",
25 ],
26 "externs": [
27 "third_party/closure_compiler/externs/chrome_send_externs.js"
28 ]
29 },
30 {
31 "name": "cr",
32 "sources": [
33 "ui/webui/resources/js/cr/event_target.js"
34 ],
35 "depends": [
36 "ui/webui/resources/js/assert.js",
37 "ui/webui/resources/js/cr.js"
38 ],
39 },
40 {
41 "name": "media_common",
42 "sources": [
43 "ui/webui/resources/js/media_common.js"
44 ]
45 },
46 {
3 "name": "util", 47 "name": "util",
4 "sources": [ 48 "sources": [
5 "ui/webui/resources/js/util.js" 49 "ui/webui/resources/js/util.js"
6 ], 50 ],
7 "depends": [ 51 "depends": [
8 "ui/webui/resources/js/cr.js" 52 "ui/webui/resources/js/cr.js"
9 ], 53 ],
10 "externs": [ 54 "externs": [
11 "third_party/closure_compiler/externs/chrome_send_externs.js" 55 "third_party/closure_compiler/externs/chrome_send_externs.js"
12 ] 56 ]
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "name": "ui_account_tweaks", 114 "name": "ui_account_tweaks",
71 "sources": [ 115 "sources": [
72 "ui/webui/resources/js/chromeos/ui_account_tweaks.js" 116 "ui/webui/resources/js/chromeos/ui_account_tweaks.js"
73 ], 117 ],
74 "depends": [ 118 "depends": [
75 "ui/webui/resources/js/cr.js", 119 "ui/webui/resources/js/cr.js",
76 "ui/webui/resources/js/load_time_data.js" 120 "ui/webui/resources/js/load_time_data.js"
77 ] 121 ]
78 } 122 }
79 ] 123 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698