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

Side by Side Diff: compiled.resources

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: Yet last fixes 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 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 [ 4 [
5 { 5 {
6 "name": "base", 6 "name": "base",
7 "sources": [ 7 "sources": [
8 "ui/webui/resources/js/assert.js", 8 "ui/webui/resources/js/assert.js",
9 "ui/webui/resources/js/cr.js", 9 "ui/webui/resources/js/cr.js",
10 "ui/webui/resources/js/event_tracker.js", 10 "ui/webui/resources/js/event_tracker.js",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 }, 79 },
80 { 80 {
81 "name": "ui_account_tweaks", 81 "name": "ui_account_tweaks",
82 "sources": [ 82 "sources": [
83 "ui/webui/resources/js/chromeos/ui_account_tweaks.js" 83 "ui/webui/resources/js/chromeos/ui_account_tweaks.js"
84 ], 84 ],
85 "depends": [ 85 "depends": [
86 "ui/webui/resources/js/cr.js", 86 "ui/webui/resources/js/cr.js",
87 "ui/webui/resources/js/load_time_data.js" 87 "ui/webui/resources/js/load_time_data.js"
88 ] 88 ]
89 } 89 },
90 {
91 "name": "event_target",
92 "sources": [
93 "ui/webui/resources/js/cr/event_target.js"
94 ],
95 "depends": [
96 "ui/webui/resources/js/assert.js",
97 "ui/webui/resources/js/cr.js"
98 ],
99 },
100 {
101 "name": "media_common",
102 "sources": [
103 "ui/webui/resources/js/media_common.js"
104 ]
105 },
106 {
107 "name": "uber_utils",
108 "sources": [
109 "chrome/browser/resources/uber/uber_utils.js",
110 ],
111 "depends": [
112 "ui/webui/resources/js/cr.js",
113 "ui/webui/resources/js/util.js",
114 "ui/webui/resources/js/load_time_data.js",
115 "chrome/browser/resources/uber/uber_utils.js",
116 ],
117 "externs": [
118 "third_party/closure_compiler/externs/chrome_send_externs.js"
119 ]
120 },
121 {
122 "name": "focus_manager",
123 "sources": [
124 "ui/webui/resources/js/cr/ui/focus_manager.js",
125 ],
126 "depends": [
127 "ui/webui/resources/js/assert.js",
128 "ui/webui/resources/js/cr.js",
129 ],
130 "externs": [
131 ]
132 },
Dan Beam 2014/08/06 16:06:59 just remove this diff and keep the file local
Vitaly Pavlenko 2014/08/07 18:18:13 I removed it in Patch Set #6.
90 ] 133 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698