| 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. |
| 112 'remoting_webapp_js_xmpp_files': [ |
| 113 'webapp/xmpp_connection.js', |
| 114 'webapp/xmpp_login_handler.js', |
| 115 'webapp/xmpp_stream_parser.js', |
| 116 ], |
| 111 # Remoting WCS container JavaScript files. | 117 # Remoting WCS container JavaScript files. |
| 112 'remoting_webapp_js_wcs_container_files': [ | 118 'remoting_webapp_js_wcs_container_files': [ |
| 113 'webapp/wcs_sandbox_container.js', | 119 'webapp/wcs_sandbox_container.js', |
| 114 ], | 120 ], |
| 115 # Remoting WCS sandbox JavaScript files. | 121 # Remoting WCS sandbox JavaScript files. |
| 116 'remoting_webapp_js_wcs_sandbox_files': [ | 122 'remoting_webapp_js_wcs_sandbox_files': [ |
| 117 'webapp/wcs.js', | 123 'webapp/wcs.js', |
| 118 'webapp/wcs_loader.js', | 124 'webapp/wcs_loader.js', |
| 119 'webapp/wcs_sandbox_content.js', | 125 'webapp/wcs_sandbox_content.js', |
| 120 'webapp/xhr_proxy.js', | 126 'webapp/xhr_proxy.js', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 142 'webapp/background/background.js', | 148 'webapp/background/background.js', |
| 143 # event_handlers.js is where the onLoad handler is defined, which | 149 # event_handlers.js is where the onLoad handler is defined, which |
| 144 # makes it the entry point of the webapp. | 150 # makes it the entry point of the webapp. |
| 145 'webapp/event_handlers.js', | 151 'webapp/event_handlers.js', |
| 146 ], | 152 ], |
| 147 # The unit test cases for the webapp | 153 # The unit test cases for the webapp |
| 148 'remoting_webapp_unittest_js_files': [ | 154 'remoting_webapp_unittest_js_files': [ |
| 149 'webapp/js_proto/chrome_proto.js', | 155 'webapp/js_proto/chrome_proto.js', |
| 150 'webapp/unittests/chrome_mocks.js', | 156 'webapp/unittests/chrome_mocks.js', |
| 151 'webapp/unittests/base_unittest.js', | 157 'webapp/unittests/base_unittest.js', |
| 158 'webapp/unittests/it2me_helpee_channel_unittest.js', |
| 159 'webapp/unittests/it2me_helper_channel_unittest.js', |
| 160 'webapp/unittests/it2me_service_unittest.js', |
| 152 'webapp/unittests/l10n_unittest.js', | 161 'webapp/unittests/l10n_unittest.js', |
| 153 'webapp/unittests/menu_button_unittest.js', | 162 'webapp/unittests/menu_button_unittest.js', |
| 154 'webapp/unittests/it2me_helpee_channel_unittest.js', | 163 'webapp/unittests/xmpp_connection_unittest.js', |
| 155 'webapp/unittests/it2me_helper_channel_unittest.js', | 164 'webapp/unittests/xmpp_login_handler_unittest.js', |
| 156 'webapp/unittests/it2me_service_unittest.js' | 165 'webapp/unittests/xmpp_stream_parser_unittest.js', |
| 157 ], | 166 ], |
| 158 'remoting_webapp_unittest_additional_files': [ | 167 'remoting_webapp_unittest_additional_files': [ |
| 159 'webapp/menu_button.css', | 168 'webapp/menu_button.css', |
| 160 ], | 169 ], |
| 161 'remoting_webapp_unittest_template_main': | 170 'remoting_webapp_unittest_template_main': |
| 162 'webapp/html/template_unittest.html', | 171 'webapp/html/template_unittest.html', |
| 163 | 172 |
| 164 # The JavaScript files required by main.html. | 173 # The JavaScript files required by main.html. |
| 165 'remoting_webapp_main_html_js_files': [ | 174 'remoting_webapp_main_html_js_files': [ |
| 166 # Include the core files first as it is required by the other files. | 175 # Include the core files first as it is required by the other files. |
| 167 # Otherwise, Jscompile will complain. | 176 # Otherwise, Jscompile will complain. |
| 168 '<@(remoting_webapp_js_core_files)', | 177 '<@(remoting_webapp_js_core_files)', |
| 169 '<@(remoting_webapp_js_auth_client2host_files)', | 178 '<@(remoting_webapp_js_auth_client2host_files)', |
| 170 '<@(remoting_webapp_js_auth_google_files)', | 179 '<@(remoting_webapp_js_auth_google_files)', |
| 171 '<@(remoting_webapp_js_client_files)', | 180 '<@(remoting_webapp_js_client_files)', |
| 172 '<@(remoting_webapp_js_gnubby_auth_files)', | 181 '<@(remoting_webapp_js_gnubby_auth_files)', |
| 173 '<@(remoting_webapp_js_cast_extension_files)', | 182 '<@(remoting_webapp_js_cast_extension_files)', |
| 174 '<@(remoting_webapp_js_host_files)', | 183 '<@(remoting_webapp_js_host_files)', |
| 175 '<@(remoting_webapp_js_logging_files)', | 184 '<@(remoting_webapp_js_logging_files)', |
| 176 '<@(remoting_webapp_js_ui_files)', | 185 '<@(remoting_webapp_js_ui_files)', |
| 177 '<@(remoting_webapp_js_ui_host_control_files)', | 186 '<@(remoting_webapp_js_ui_host_control_files)', |
| 178 '<@(remoting_webapp_js_ui_host_display_files)', | 187 '<@(remoting_webapp_js_ui_host_display_files)', |
| 179 '<@(remoting_webapp_js_wcs_container_files)', | 188 '<@(remoting_webapp_js_wcs_container_files)', |
| 189 '<@(remoting_webapp_js_xmpp_files)', |
| 180 # Uncomment this line to include browser test files in the web app | 190 # Uncomment this line to include browser test files in the web app |
| 181 # to expedite debugging or local development. | 191 # to expedite debugging or local development. |
| 182 # '<@(remoting_webapp_js_browser_test_files)' | 192 # '<@(remoting_webapp_js_browser_test_files)' |
| 183 ], | 193 ], |
| 184 | 194 |
| 185 # The JavaScript files that are used in the background page. | 195 # The JavaScript files that are used in the background page. |
| 186 'remoting_webapp_background_js_files': [ | 196 'remoting_webapp_background_js_files': [ |
| 187 'webapp/base.js', | 197 'webapp/base.js', |
| 188 'webapp/client_session.js', | 198 'webapp/client_session.js', |
| 189 'webapp/error.js', | 199 'webapp/error.js', |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 'webapp/html/dialog_token_refresh_failed.html', | 302 'webapp/html/dialog_token_refresh_failed.html', |
| 293 'webapp/html/toolbar.html', | 303 'webapp/html/toolbar.html', |
| 294 'webapp/html/ui_header.html', | 304 'webapp/html/ui_header.html', |
| 295 'webapp/html/ui_it2me.html', | 305 'webapp/html/ui_it2me.html', |
| 296 'webapp/html/ui_me2me.html', | 306 'webapp/html/ui_me2me.html', |
| 297 'webapp/html/window_frame.html', | 307 'webapp/html/window_frame.html', |
| 298 ], | 308 ], |
| 299 | 309 |
| 300 }, | 310 }, |
| 301 } | 311 } |
| OLD | NEW |