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

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: 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 # {
15 # "name": "uber",
16 # "sources": [
17 # "chrome/browser/resources/uber/uber.js",
18 # ],
19 # "depends": [
20 # "ui/webui/resources/js/cr.js",
21 # "ui/webui/resources/js/util.js",
22 # "ui/webui/resources/js/load_time_data.js",
23 # "chrome/browser/resources/uber/uber_utils.js",
24 # ],
25 # "externs": [
26 # "third_party/closure_compiler/externs/chrome_send_externs.js"
27 # ]
28 # },
Dan Beam 2014/07/23 22:09:24 probably shouldn't commit commented out targets.
Vitaly Pavlenko 2014/07/24 01:09:31 Done.
29 {
30 "name": "uber_utils",
31 "sources": [
32 "chrome/browser/resources/uber/uber_utils.js",
33 ],
34 "depends": [
35 "ui/webui/resources/js/cr.js",
36 "ui/webui/resources/js/util.js",
37 "ui/webui/resources/js/load_time_data.js",
38 "chrome/browser/resources/uber/uber_utils.js",
39 ],
40 "externs": [
41 "third_party/closure_compiler/externs/chrome_send_externs.js"
42 ]
43 },
44 {
45 "name": "cr",
46 "sources": [
47 "ui/webui/resources/js/cr/event_target.js"
48 ],
49 "depends": [
50 "ui/webui/resources/js/assert.js",
51 "ui/webui/resources/js/cr.js"
52 ],
53 },
54 {
55 "name": "media_common",
56 "sources": [
57 "ui/webui/resources/js/media_common.js"
58 ]
59 },
60 {
3 "name": "util", 61 "name": "util",
4 "sources": [ 62 "sources": [
5 "ui/webui/resources/js/util.js" 63 "ui/webui/resources/js/util.js"
6 ], 64 ],
7 "depends": [ 65 "depends": [
8 "ui/webui/resources/js/cr.js" 66 "ui/webui/resources/js/cr.js"
9 ], 67 ],
10 "externs": [ 68 "externs": [
11 "third_party/closure_compiler/externs/chrome_send_externs.js" 69 "third_party/closure_compiler/externs/chrome_send_externs.js"
12 ] 70 ]
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "name": "ui_account_tweaks", 128 "name": "ui_account_tweaks",
71 "sources": [ 129 "sources": [
72 "ui/webui/resources/js/chromeos/ui_account_tweaks.js" 130 "ui/webui/resources/js/chromeos/ui_account_tweaks.js"
73 ], 131 ],
74 "depends": [ 132 "depends": [
75 "ui/webui/resources/js/cr.js", 133 "ui/webui/resources/js/cr.js",
76 "ui/webui/resources/js/load_time_data.js" 134 "ui/webui/resources/js/load_time_data.js"
77 ] 135 ]
78 } 136 }
79 ] 137 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698