OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # `7MM"""Mq. `7MM | 5 # `7MM"""Mq. `7MM |
6 # MM `MM. MM | 6 # MM `MM. MM |
7 # MM ,M9 .gP"Ya ,6"Yb. ,M""bMM `7MMpMMMb.pMMMb. .gP"Ya | 7 # MM ,M9 .gP"Ya ,6"Yb. ,M""bMM `7MMpMMMb.pMMMb. .gP"Ya |
8 # MMmmdM9 ,M' Yb 8) MM ,AP MM MM MM MM ,M' Yb | 8 # MMmmdM9 ,M' Yb 8) MM ,AP MM MM MM MM ,M' Yb |
9 # MM YM. 8M"""""" ,pm9MM 8MI MM MM MM MM 8M"""""" | 9 # MM YM. 8M"""""" ,pm9MM 8MI MM MM MM MM 8M"""""" |
10 # MM `Mb.YM. , 8M MM `Mb MM MM MM MM YM. , | 10 # MM `Mb.YM. , 8M MM `Mb MM MM MM MM YM. , |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 "crd/js/host_screen.js", | 280 "crd/js/host_screen.js", |
281 "crd/js/host_session.js", | 281 "crd/js/host_session.js", |
282 "crd/js/host_setup_dialog.js", | 282 "crd/js/host_setup_dialog.js", |
283 "crd/js/host_install_dialog.js", | 283 "crd/js/host_install_dialog.js", |
284 "crd/js/host_installer.js", | 284 "crd/js/host_installer.js", |
285 "crd/js/it2me_host_facade.js", | 285 "crd/js/it2me_host_facade.js", |
286 "crd/js/native_message_host_log_message_handler.js", | 286 "crd/js/native_message_host_log_message_handler.js", |
287 "crd/js/paired_client_manager.js", | 287 "crd/js/paired_client_manager.js", |
288 ] | 288 ] |
289 | 289 |
| 290 # Files for controlling the local it2me host. |
| 291 # Included by public_session.html. |
| 292 remoting_webapp_js_it2me_host_control_files = [ |
| 293 "crd/js/buffered_signal_strategy.js", |
| 294 "crd/js/host_screen.js", |
| 295 "crd/js/host_session.js", |
| 296 "crd/js/host_install_dialog.js", |
| 297 "crd/js/host_installer.js", |
| 298 "crd/js/it2me_host_facade.js", |
| 299 "crd/js/native_message_host_log_message_handler.js", |
| 300 ] |
| 301 |
290 # Files for displaying (in the client) info about available hosts. | 302 # Files for displaying (in the client) info about available hosts. |
291 remoting_webapp_js_host_display_files = [ | 303 remoting_webapp_js_host_display_files = [ |
292 "crd/js/host_list.js", | 304 "crd/js/host_list.js", |
293 "crd/js/host_list_api.js", | 305 "crd/js/host_list_api.js", |
294 "crd/js/host_table_entry.js", | 306 "crd/js/host_table_entry.js", |
295 "crd/js/local_host_section.js", | 307 "crd/js/local_host_section.js", |
296 | 308 |
297 # Must come after host_list_api.js because of an issue with | 309 # Must come after host_list_api.js because of an issue with |
298 # JSCompiler. If an implementation of an interface occurs in a | 310 # JSCompiler. If an implementation of an interface occurs in a |
299 # file processed before the interface itself, the @override tag | 311 # file processed before the interface itself, the @override tag |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 "crd/html/dialog_manage_pairings.html", | 393 "crd/html/dialog_manage_pairings.html", |
382 "crd/html/dialog_token_refresh_failed.html", | 394 "crd/html/dialog_token_refresh_failed.html", |
383 "crd/html/toolbar.html", | 395 "crd/html/toolbar.html", |
384 "crd/html/ui_header.html", | 396 "crd/html/ui_header.html", |
385 "crd/html/ui_it2me.html", | 397 "crd/html/ui_it2me.html", |
386 "crd/html/ui_me2me.html", | 398 "crd/html/ui_me2me.html", |
387 "crd/html/window_frame.html", | 399 "crd/html/window_frame.html", |
388 ] | 400 ] |
389 | 401 |
390 # | 402 # |
| 403 # DesktopRemoting public_session.html generation files. |
| 404 # |
| 405 remoting_webapp_template_public_session = |
| 406 "crd/html/template_public_session.html" |
| 407 |
| 408 # The shared JavaScript files required by public_session.html. |
| 409 remoting_webapp_public_session_html_all_js_files = |
| 410 # Include the core files first as it is required by the other files. |
| 411 # Otherwise, Jscompile will complain. |
| 412 remoting_webapp_shared_js_core_files + |
| 413 remoting_webapp_shared_js_auth_google_files + |
| 414 remoting_webapp_shared_js_client_files + |
| 415 remoting_webapp_shared_js_host_files + |
| 416 remoting_webapp_shared_js_logging_files + |
| 417 remoting_webapp_shared_js_ui_files + |
| 418 remoting_webapp_shared_js_signaling_files + |
| 419 remoting_webapp_js_it2me_host_control_files + |
| 420 [ |
| 421 "crd/js/crd_auth_dialog.js", |
| 422 "crd/js/public_session_main.js", |
| 423 ] |
| 424 |
| 425 # These template files are used to construct public_session.html. |
| 426 remoting_webapp_public_session_template_files = [ "crd/html/dialog_host.html" ] |
| 427 |
| 428 # |
391 # DesktopRemoting background.html generation files. | 429 # DesktopRemoting background.html generation files. |
392 # | 430 # |
393 | 431 |
394 remoting_webapp_template_background = "crd/html/template_background.html" | 432 remoting_webapp_template_background = "crd/html/template_background.html" |
395 | 433 |
396 # These JS files are specific to the background page and are not part of | 434 # These JS files are specific to the background page and are not part of |
397 # the main JS files. | 435 # the main JS files. |
398 remoting_webapp_background_html_js_files = [ | 436 remoting_webapp_background_html_js_files = [ |
399 "crd/js/activation_handler.js", | 437 "crd/js/activation_handler.js", |
400 "crd/js/app_launcher.js", | 438 "crd/js/app_launcher.js", |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 "base/html/credits_css.css", | 552 "base/html/credits_css.css", |
515 "base/html/main.css", | 553 "base/html/main.css", |
516 "base/html/message_window.css", | 554 "base/html/message_window.css", |
517 "base/resources/open_sans.css", | 555 "base/resources/open_sans.css", |
518 "base/resources/open_sans.woff", | 556 "base/resources/open_sans.woff", |
519 "base/resources/spinner.gif", | 557 "base/resources/spinner.gif", |
520 "crd/html/butter_bar.css", | 558 "crd/html/butter_bar.css", |
521 "crd/html/crd_main.css", | 559 "crd/html/crd_main.css", |
522 "crd/html/toolbar.css", | 560 "crd/html/toolbar.css", |
523 "crd/html/menu_button.css", | 561 "crd/html/menu_button.css", |
| 562 "crd/html/public_session.css", |
524 "crd/html/window_frame.css", | 563 "crd/html/window_frame.css", |
525 "crd/resources/scale-to-fit.webp", | 564 "crd/resources/scale-to-fit.webp", |
526 ] | 565 ] |
527 | 566 |
528 remoting_webapp_crd_files = | 567 remoting_webapp_crd_files = |
529 remoting_webapp_info_files + remoting_webapp_crd_js_files + | 568 remoting_webapp_info_files + remoting_webapp_crd_js_files + |
530 remoting_webapp_resource_files | 569 remoting_webapp_resource_files + |
| 570 remoting_webapp_public_session_html_all_js_files |
531 | 571 |
532 # Files that contain localizable strings. | 572 # Files that contain localizable strings. |
533 desktop_remoting_webapp_localizable_files = | 573 desktop_remoting_webapp_localizable_files = |
534 [ | 574 [ |
535 "webapp/crd/manifest.json.jinja2", | 575 "webapp/crd/manifest.json.jinja2", |
536 remoting_webapp_template_background, | 576 remoting_webapp_template_background, |
537 remoting_webapp_template_main, | 577 remoting_webapp_template_main, |
538 remoting_webapp_template_message_window, | 578 remoting_webapp_template_message_window, |
539 remoting_webapp_template_wcs_sandbox, | 579 remoting_webapp_template_wcs_sandbox, |
540 ] + remoting_webapp_template_files + remoting_webapp_crd_js_files | 580 ] + remoting_webapp_template_files + remoting_webapp_crd_js_files |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 ar_main_template, | 708 ar_main_template, |
669 ar_feedback_consent_template, | 709 ar_feedback_consent_template, |
670 ar_loading_window_template, | 710 ar_loading_window_template, |
671 remoting_webapp_template_message_window, | 711 remoting_webapp_template_message_window, |
672 remoting_webapp_template_wcs_sandbox, | 712 remoting_webapp_template_wcs_sandbox, |
673 ] + ar_main_template_files + ar_all_js_files | 713 ] + ar_main_template_files + ar_all_js_files |
674 | 714 |
675 webapp_js_files = remoting_webapp_unittest_html_all_js_files + | 715 webapp_js_files = remoting_webapp_unittest_html_all_js_files + |
676 remoting_webapp_wcs_sandbox_html_js_files + | 716 remoting_webapp_wcs_sandbox_html_js_files + |
677 remoting_webapp_background_html_js_files | 717 remoting_webapp_background_html_js_files |
OLD | NEW |