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

Side by Side Diff: remoting/remoting_webapp_files.gypi

Issue 493813002: Show MessageWindow from the background page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add support for confirm dialogs Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | remoting/webapp/background/message_window.js » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'remoting_webapp_info_files': [ 7 'remoting_webapp_info_files': [
8 'resources/chromoting16.webp', 8 'resources/chromoting16.webp',
9 'resources/chromoting48.webp', 9 'resources/chromoting48.webp',
10 'resources/chromoting128.webp', 10 'resources/chromoting128.webp',
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 182
183 # The JavaScript files that are used as background pages. 183 # The JavaScript files that are used as background pages.
184 'remoting_webapp_background_js_files': [ 184 'remoting_webapp_background_js_files': [
185 'webapp/base.js', 185 'webapp/base.js',
186 'webapp/client_session.js', 186 'webapp/client_session.js',
187 'webapp/typecheck.js', 187 'webapp/typecheck.js',
188 'webapp/background/app_launcher.js', 188 'webapp/background/app_launcher.js',
189 'webapp/background/background.js', 189 'webapp/background/background.js',
190 'webapp/background/it2me_helper_channel.js', 190 'webapp/background/it2me_helper_channel.js',
191 'webapp/background/it2me_service.js', 191 'webapp/background/it2me_service.js',
192 'webapp/background/message_window_helper.js',
193 'webapp/background/message_window_manager.js',
192 ], 194 ],
193 195
194 # The JavaScript files required by wcs_sandbox.html. 196 # The JavaScript files required by wcs_sandbox.html.
195 'remoting_webapp_wcs_sandbox_html_js_files': [ 197 'remoting_webapp_wcs_sandbox_html_js_files': [
196 '<@(remoting_webapp_js_wcs_sandbox_files)', 198 '<@(remoting_webapp_js_wcs_sandbox_files)',
197 'webapp/error.js', 199 'webapp/error.js',
198 'webapp/plugin_settings.js', 200 'webapp/plugin_settings.js',
199 ], 201 ],
200 202
201 # All the JavaScript files required by the webapp. 203 # All the JavaScript files required by the webapp.
202 'remoting_webapp_all_js_files': [ 204 'remoting_webapp_all_js_files': [
203 # JS files for main.html. 205 # JS files for main.html.
204 '<@(remoting_webapp_main_html_js_files)', 206 '<@(remoting_webapp_main_html_js_files)',
205 '<@(remoting_webapp_background_js_files)', 207 '<@(remoting_webapp_background_js_files)',
208 # JS files for message_window.html
209 'webapp/background/message_window.js',
206 # JS files for wcs_sandbox.html. 210 # JS files for wcs_sandbox.html.
207 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files 211 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
208 # so that we don't double include error.js and plugin_settings.js. 212 # so that we don't double include error.js and plugin_settings.js.
209 '<@(remoting_webapp_js_wcs_sandbox_files)', 213 '<@(remoting_webapp_js_wcs_sandbox_files)',
210 # JS files referenced in mainfest.json. 214 # JS files referenced in mainfest.json.
211 '<@(remoting_webapp_js_auth_v1_files)', 215 '<@(remoting_webapp_js_auth_v1_files)',
212 ], 216 ],
213 217
214 'remoting_webapp_resource_files': [ 218 'remoting_webapp_resource_files': [
215 'resources/disclosure_arrow_down.webp', 219 'resources/disclosure_arrow_down.webp',
216 'resources/disclosure_arrow_right.webp', 220 'resources/disclosure_arrow_right.webp',
217 'resources/drag.webp', 221 'resources/drag.webp',
218 'resources/host_setup_instructions.webp', 222 'resources/host_setup_instructions.webp',
219 'resources/icon_close.webp', 223 'resources/icon_close.webp',
220 'resources/icon_cross.webp', 224 'resources/icon_cross.webp',
221 'resources/icon_disconnect.webp', 225 'resources/icon_disconnect.webp',
222 'resources/icon_help.webp', 226 'resources/icon_help.webp',
223 'resources/icon_host.webp', 227 'resources/icon_host.webp',
224 'resources/icon_maximize_restore.webp', 228 'resources/icon_maximize_restore.webp',
225 'resources/icon_minimize.webp', 229 'resources/icon_minimize.webp',
226 'resources/icon_options.webp', 230 'resources/icon_options.webp',
227 'resources/icon_pencil.webp', 231 'resources/icon_pencil.webp',
228 'resources/icon_warning.webp', 232 'resources/icon_warning.webp',
229 'resources/infographic_my_computers.webp', 233 'resources/infographic_my_computers.webp',
230 'resources/infographic_remote_assistance.webp', 234 'resources/infographic_remote_assistance.webp',
231 'resources/plus.webp', 235 'resources/plus.webp',
232 'resources/reload.webp', 236 'resources/reload.webp',
233 'resources/tick.webp', 237 'resources/tick.webp',
234 'webapp/connection_stats.css', 238 'webapp/connection_stats.css',
239 'webapp/html/message_window.html',
garykac 2014/08/23 00:48:19 When we add new html files, we should add a jscomp
235 'webapp/main.css', 240 'webapp/main.css',
236 'webapp/menu_button.css', 241 'webapp/menu_button.css',
242 'webapp/message_window.css',
237 'webapp/open_sans.css', 243 'webapp/open_sans.css',
238 'webapp/open_sans.woff', 244 'webapp/open_sans.woff',
239 'webapp/scale-to-fit.webp', 245 'webapp/scale-to-fit.webp',
240 'webapp/spinner.gif', 246 'webapp/spinner.gif',
241 'webapp/toolbar.css', 247 'webapp/toolbar.css',
242 'webapp/window_frame.css', 248 'webapp/window_frame.css',
243 ], 249 ],
244 250
245 'remoting_webapp_files': [ 251 'remoting_webapp_files': [
246 '<@(remoting_webapp_info_files)', 252 '<@(remoting_webapp_info_files)',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 'webapp/html/dialog_token_refresh_failed.html', 284 'webapp/html/dialog_token_refresh_failed.html',
279 'webapp/html/toolbar.html', 285 'webapp/html/toolbar.html',
280 'webapp/html/ui_header.html', 286 'webapp/html/ui_header.html',
281 'webapp/html/ui_it2me.html', 287 'webapp/html/ui_it2me.html',
282 'webapp/html/ui_me2me.html', 288 'webapp/html/ui_me2me.html',
283 'webapp/html/window_frame.html', 289 'webapp/html/window_frame.html',
284 ], 290 ],
285 291
286 }, 292 },
287 } 293 }
OLDNEW
« no previous file with comments | « no previous file | remoting/webapp/background/message_window.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698