| OLD | NEW |
| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 'webapp/host_installer.js', | 101 'webapp/host_installer.js', |
| 102 'webapp/paired_client_manager.js', | 102 'webapp/paired_client_manager.js', |
| 103 ], | 103 ], |
| 104 # UI files for displaying (in the client) info about available hosts. | 104 # UI files for displaying (in the client) info about available hosts. |
| 105 'remoting_webapp_js_ui_host_display_files': [ | 105 'remoting_webapp_js_ui_host_display_files': [ |
| 106 'webapp/host.js', | 106 'webapp/host.js', |
| 107 'webapp/host_list.js', | 107 'webapp/host_list.js', |
| 108 'webapp/host_settings.js', | 108 'webapp/host_settings.js', |
| 109 'webapp/host_table_entry.js', | 109 'webapp/host_table_entry.js', |
| 110 ], | 110 ], |
| 111 # Remoting XMPP JavaScript files. | 111 # Remoting signaling files. |
| 112 'remoting_webapp_js_xmpp_files': [ | 112 'remoting_webapp_js_signaling_files': [ |
| 113 'webapp/signal_strategy.js', |
| 114 'webapp/wcs_adapter.js', |
| 115 'webapp/wcs_sandbox_container.js', |
| 113 'webapp/xmpp_connection.js', | 116 'webapp/xmpp_connection.js', |
| 114 'webapp/xmpp_login_handler.js', | 117 'webapp/xmpp_login_handler.js', |
| 115 'webapp/xmpp_stream_parser.js', | 118 'webapp/xmpp_stream_parser.js', |
| 116 ], | 119 ], |
| 117 # Remoting WCS container JavaScript files. | |
| 118 'remoting_webapp_js_wcs_container_files': [ | |
| 119 'webapp/wcs_sandbox_container.js', | |
| 120 ], | |
| 121 # Remoting WCS sandbox JavaScript files. | 120 # Remoting WCS sandbox JavaScript files. |
| 122 'remoting_webapp_js_wcs_sandbox_files': [ | 121 'remoting_webapp_js_wcs_sandbox_files': [ |
| 123 'webapp/wcs.js', | 122 'webapp/wcs.js', |
| 124 'webapp/wcs_loader.js', | 123 'webapp/wcs_loader.js', |
| 125 'webapp/wcs_sandbox_content.js', | 124 'webapp/wcs_sandbox_content.js', |
| 126 'webapp/xhr_proxy.js', | 125 'webapp/xhr_proxy.js', |
| 127 ], | 126 ], |
| 128 # gnubby authentication JavaScript files. | 127 # gnubby authentication JavaScript files. |
| 129 'remoting_webapp_js_gnubby_auth_files': [ | 128 'remoting_webapp_js_gnubby_auth_files': [ |
| 130 'webapp/gnubby_auth_handler.js', | 129 'webapp/gnubby_auth_handler.js', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 '<@(remoting_webapp_js_auth_client2host_files)', | 177 '<@(remoting_webapp_js_auth_client2host_files)', |
| 179 '<@(remoting_webapp_js_auth_google_files)', | 178 '<@(remoting_webapp_js_auth_google_files)', |
| 180 '<@(remoting_webapp_js_client_files)', | 179 '<@(remoting_webapp_js_client_files)', |
| 181 '<@(remoting_webapp_js_gnubby_auth_files)', | 180 '<@(remoting_webapp_js_gnubby_auth_files)', |
| 182 '<@(remoting_webapp_js_cast_extension_files)', | 181 '<@(remoting_webapp_js_cast_extension_files)', |
| 183 '<@(remoting_webapp_js_host_files)', | 182 '<@(remoting_webapp_js_host_files)', |
| 184 '<@(remoting_webapp_js_logging_files)', | 183 '<@(remoting_webapp_js_logging_files)', |
| 185 '<@(remoting_webapp_js_ui_files)', | 184 '<@(remoting_webapp_js_ui_files)', |
| 186 '<@(remoting_webapp_js_ui_host_control_files)', | 185 '<@(remoting_webapp_js_ui_host_control_files)', |
| 187 '<@(remoting_webapp_js_ui_host_display_files)', | 186 '<@(remoting_webapp_js_ui_host_display_files)', |
| 188 '<@(remoting_webapp_js_wcs_container_files)', | 187 '<@(remoting_webapp_js_signaling_files)', |
| 189 '<@(remoting_webapp_js_xmpp_files)', | |
| 190 # Uncomment this line to include browser test files in the web app | 188 # Uncomment this line to include browser test files in the web app |
| 191 # to expedite debugging or local development. | 189 # to expedite debugging or local development. |
| 192 # '<@(remoting_webapp_js_browser_test_files)' | 190 # '<@(remoting_webapp_js_browser_test_files)' |
| 193 ], | 191 ], |
| 194 | 192 |
| 195 # The JavaScript files that are used in the background page. | 193 # The JavaScript files that are used in the background page. |
| 196 'remoting_webapp_background_js_files': [ | 194 'remoting_webapp_background_js_files': [ |
| 197 'webapp/base.js', | 195 'webapp/base.js', |
| 198 'webapp/client_session.js', | 196 'webapp/client_session.js', |
| 199 'webapp/error.js', | 197 'webapp/error.js', |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 'webapp/html/dialog_token_refresh_failed.html', | 301 'webapp/html/dialog_token_refresh_failed.html', |
| 304 'webapp/html/toolbar.html', | 302 'webapp/html/toolbar.html', |
| 305 'webapp/html/ui_header.html', | 303 'webapp/html/ui_header.html', |
| 306 'webapp/html/ui_it2me.html', | 304 'webapp/html/ui_it2me.html', |
| 307 'webapp/html/ui_me2me.html', | 305 'webapp/html/ui_me2me.html', |
| 308 'webapp/html/window_frame.html', | 306 'webapp/html/window_frame.html', |
| 309 ], | 307 ], |
| 310 | 308 |
| 311 }, | 309 }, |
| 312 } | 310 } |
| OLD | NEW |