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

Side by Side Diff: remoting/remoting_webapp_files.gypi

Issue 888323002: Improve HRD first run experience (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reviewer's feedback Created 5 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 | remoting/webapp/base/js/base.js » ('j') | remoting/webapp/base/js/base.js » ('J')
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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 'remoting_webapp_background_js_files': [ 229 'remoting_webapp_background_js_files': [
230 'webapp/base/js/base.js', 230 'webapp/base/js/base.js',
231 'webapp/base/js/ipc.js', 231 'webapp/base/js/ipc.js',
232 'webapp/base/js/message_window_helper.js', 232 'webapp/base/js/message_window_helper.js',
233 'webapp/base/js/message_window_manager.js', 233 'webapp/base/js/message_window_manager.js',
234 'webapp/crd/js/activation_handler.js', 234 'webapp/crd/js/activation_handler.js',
235 'webapp/crd/js/app_launcher.js', 235 'webapp/crd/js/app_launcher.js',
236 'webapp/crd/js/background.js', 236 'webapp/crd/js/background.js',
237 'webapp/crd/js/client_session.js', 237 'webapp/crd/js/client_session.js',
238 'webapp/crd/js/error.js', 238 'webapp/crd/js/error.js',
239 'webapp/crd/js/hangout_consent_dialog.js',
239 'webapp/crd/js/host_installer.js', 240 'webapp/crd/js/host_installer.js',
240 'webapp/crd/js/host_session.js', 241 'webapp/crd/js/host_session.js',
241 'webapp/crd/js/it2me_helpee_channel.js', 242 'webapp/crd/js/it2me_helpee_channel.js',
242 'webapp/crd/js/it2me_helper_channel.js', 243 'webapp/crd/js/it2me_helper_channel.js',
243 'webapp/crd/js/it2me_host_facade.js', 244 'webapp/crd/js/it2me_host_facade.js',
244 'webapp/crd/js/it2me_service.js', 245 'webapp/crd/js/it2me_service.js',
245 'webapp/crd/js/l10n.js', 246 'webapp/crd/js/l10n.js',
246 'webapp/crd/js/oauth2.js', 247 'webapp/crd/js/oauth2.js',
247 'webapp/crd/js/oauth2_api.js', 248 'webapp/crd/js/oauth2_api.js',
249 'webapp/crd/js/oauth2_api_impl.js',
248 'webapp/crd/js/plugin_settings.js', 250 'webapp/crd/js/plugin_settings.js',
249 'webapp/crd/js/typecheck.js', 251 'webapp/crd/js/typecheck.js',
250 'webapp/crd/js/xhr.js', 252 'webapp/crd/js/xhr.js',
251 ], 253 ],
252 254
253 # The JavaScript files required by wcs_sandbox.html. 255 # The JavaScript files required by wcs_sandbox.html.
254 'remoting_webapp_wcs_sandbox_html_js_files': [ 256 'remoting_webapp_wcs_sandbox_html_js_files': [
255 '<@(remoting_webapp_js_wcs_sandbox_files)', 257 '<@(remoting_webapp_js_wcs_sandbox_files)',
256 'webapp/crd/js/error.js', 258 'webapp/crd/js/error.js',
257 'webapp/crd/js/plugin_settings.js', 259 'webapp/crd/js/plugin_settings.js',
258 ], 260 ],
259 261
260 # All the JavaScript files that are shared by webapps. 262 # All the JavaScript files that are shared by webapps.
261 'remoting_webapp_shared_js_files': [ 263 'remoting_webapp_shared_js_files': [
262 # JS files for main.html. 264 # JS files for main.html.
263 '<@(remoting_webapp_shared_main_html_js_files)', 265 '<@(remoting_webapp_shared_main_html_js_files)',
264 '<@(remoting_webapp_background_js_files)', 266 '<@(remoting_webapp_background_js_files)',
265 # JS files for message_window.html 267 # JS files for message_window.html
266 'webapp/base/js/message_window.js', 268 'webapp/base/js/message_window.js',
269 # JS files for dialog_hangout_consent.html
270 'webapp/crd/js/hangout_consent_dialog_main.js',
267 # JS files for wcs_sandbox.html. 271 # JS files for wcs_sandbox.html.
268 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files 272 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
269 # so that we don't double include error.js and plugin_settings.js. 273 # so that we don't double include error.js and plugin_settings.js.
270 '<@(remoting_webapp_js_wcs_sandbox_files)', 274 '<@(remoting_webapp_js_wcs_sandbox_files)',
271 # JS files referenced in mainfest.json. 275 # JS files referenced in mainfest.json.
272 '<@(remoting_webapp_js_auth_v1_files)', 276 '<@(remoting_webapp_js_auth_v1_files)',
273 ], 277 ],
274 278
275 # All the JavaScript files required by CRD. 279 # All the JavaScript files required by CRD.
276 'remoting_webapp_crd_js_files': [ 280 'remoting_webapp_crd_js_files': [
(...skipping 16 matching lines...) Expand all
293 'resources/icon_minimize.webp', 297 'resources/icon_minimize.webp',
294 'resources/icon_options.webp', 298 'resources/icon_options.webp',
295 'resources/icon_pencil.webp', 299 'resources/icon_pencil.webp',
296 'resources/icon_warning.webp', 300 'resources/icon_warning.webp',
297 'resources/infographic_my_computers.webp', 301 'resources/infographic_my_computers.webp',
298 'resources/infographic_remote_assistance.webp', 302 'resources/infographic_remote_assistance.webp',
299 'resources/plus.webp', 303 'resources/plus.webp',
300 'resources/reload.webp', 304 'resources/reload.webp',
301 'resources/tick.webp', 305 'resources/tick.webp',
302 'webapp/base/html/connection_stats.css', 306 'webapp/base/html/connection_stats.css',
307 'webapp/base/html/main.css',
303 'webapp/base/html/message_window.html', 308 'webapp/base/html/message_window.html',
304 'webapp/base/html/main.css',
305 'webapp/base/html/message_window.css', 309 'webapp/base/html/message_window.css',
306 'webapp/base/resources/open_sans.css', 310 'webapp/base/resources/open_sans.css',
307 'webapp/base/resources/open_sans.woff', 311 'webapp/base/resources/open_sans.woff',
308 'webapp/base/resources/spinner.gif', 312 'webapp/base/resources/spinner.gif',
309 'webapp/crd/html/butter_bar.css', 313 'webapp/crd/html/butter_bar.css',
314 'webapp/crd/html/dialog_hangout_consent.html',
315 'webapp/crd/html/dialog_hangout_consent.css',
310 'webapp/crd/html/toolbar.css', 316 'webapp/crd/html/toolbar.css',
311 'webapp/crd/html/menu_button.css', 317 'webapp/crd/html/menu_button.css',
312 'webapp/crd/html/window_frame.css', 318 'webapp/crd/html/window_frame.css',
313 'webapp/crd/resources/scale-to-fit.webp', 319 'webapp/crd/resources/scale-to-fit.webp',
314 ], 320 ],
315 321
316 'remoting_webapp_crd_files': [ 322 'remoting_webapp_crd_files': [
317 '<@(remoting_webapp_info_files)', 323 '<@(remoting_webapp_info_files)',
318 '<@(remoting_webapp_crd_js_files)', 324 '<@(remoting_webapp_crd_js_files)',
319 '<@(remoting_webapp_resource_files)', 325 '<@(remoting_webapp_resource_files)',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 'webapp/crd/manifest.json.jinja2', 365 'webapp/crd/manifest.json.jinja2',
360 '<(remoting_webapp_template_main)', 366 '<(remoting_webapp_template_main)',
361 '<(remoting_webapp_template_wcs_sandbox)', 367 '<(remoting_webapp_template_wcs_sandbox)',
362 '<(remoting_webapp_template_background)', 368 '<(remoting_webapp_template_background)',
363 '<@(remoting_webapp_template_files)', 369 '<@(remoting_webapp_template_files)',
364 '<@(remoting_webapp_crd_js_files)', 370 '<@(remoting_webapp_crd_js_files)',
365 ], 371 ],
366 372
367 }, 373 },
368 } 374 }
OLDNEW
« no previous file with comments | « no previous file | remoting/webapp/base/js/base.js » ('j') | remoting/webapp/base/js/base.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698