| 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 # Keep in sync with remoting/remoting_webapp_files.gypi. | 5 # Keep in sync with remoting/remoting_webapp_files.gypi. |
| 6 | 6 |
| 7 # Jscompile proto files. | 7 # Jscompile proto files. |
| 8 # These provide type information for jscompile. | 8 # These provide type information for jscompile. |
| 9 remoting_webapp_js_proto_files = [ | 9 remoting_webapp_js_proto_files = [ |
| 10 "js_proto/chrome_proto.js", | 10 "js_proto/chrome_proto.js", |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "crd/js/oauth2_api.js", | 148 "crd/js/oauth2_api.js", |
| 149 "crd/js/oauth2_api_impl.js", | 149 "crd/js/oauth2_api_impl.js", |
| 150 ] | 150 ] |
| 151 | 151 |
| 152 # Cast extension handler JavaScript files. | 152 # Cast extension handler JavaScript files. |
| 153 remoting_webapp_js_cast_extension_files = [ "crd/js/cast_extension_handler.js" ] | 153 remoting_webapp_js_cast_extension_files = [ "crd/js/cast_extension_handler.js" ] |
| 154 | 154 |
| 155 # Client JavaScript files. | 155 # Client JavaScript files. |
| 156 remoting_webapp_js_client_files = [ | 156 remoting_webapp_js_client_files = [ |
| 157 "crd/js/client_plugin.js", | 157 "crd/js/client_plugin.js", |
| 158 "crd/js/client_plugin_host_desktop_impl.js", |
| 158 "crd/js/client_plugin_impl.js", | 159 "crd/js/client_plugin_impl.js", |
| 159 "crd/js/client_plugin_host_desktop_impl.js", | |
| 160 "crd/js/client_session.js", | 160 "crd/js/client_session.js", |
| 161 "crd/js/client_session_factory.js", |
| 161 "crd/js/clipboard.js", | 162 "crd/js/clipboard.js", |
| 162 "crd/js/connected_view.js", | 163 "crd/js/connected_view.js", |
| 163 "crd/js/connection_info.js", | 164 "crd/js/connection_info.js", |
| 164 "crd/js/credentials_provider.js", | 165 "crd/js/credentials_provider.js", |
| 165 "crd/js/desktop_connected_view.js", | 166 "crd/js/desktop_connected_view.js", |
| 166 "crd/js/host_desktop.js", | 167 "crd/js/host_desktop.js", |
| 167 "crd/js/session_connector.js", | |
| 168 "crd/js/session_connector_impl.js", | |
| 169 "crd/js/smart_reconnector.js", | 168 "crd/js/smart_reconnector.js", |
| 170 "crd/js/video_frame_recorder.js", | 169 "crd/js/video_frame_recorder.js", |
| 171 ] | 170 ] |
| 172 | 171 |
| 173 # Remoting core JavaScript files. | 172 # Remoting core JavaScript files. |
| 174 remoting_webapp_js_core_files = [ | 173 remoting_webapp_js_core_files = [ |
| 175 "base/js/app_capabilities.js", | 174 "base/js/app_capabilities.js", |
| 176 "base/js/application.js", | 175 "base/js/application.js", |
| 177 "base/js/base.js", | 176 "base/js/base.js", |
| 178 "base/js/ipc.js", | 177 "base/js/ipc.js", |
| (...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 # Files that contain localizable strings. | 471 # Files that contain localizable strings. |
| 473 desktop_remoting_webapp_localizable_files = [ | 472 desktop_remoting_webapp_localizable_files = [ |
| 474 "webapp/crd/manifest.json.jinja2", | 473 "webapp/crd/manifest.json.jinja2", |
| 475 "<(remoting_webapp_template_background)", | 474 "<(remoting_webapp_template_background)", |
| 476 "<(remoting_webapp_template_main)", | 475 "<(remoting_webapp_template_main)", |
| 477 "<(remoting_webapp_template_message_window)", | 476 "<(remoting_webapp_template_message_window)", |
| 478 "<(remoting_webapp_template_wcs_sandbox)", | 477 "<(remoting_webapp_template_wcs_sandbox)", |
| 479 "<@(remoting_webapp_template_files)", | 478 "<@(remoting_webapp_template_files)", |
| 480 "<@(remoting_webapp_crd_js_files)", | 479 "<@(remoting_webapp_crd_js_files)", |
| 481 ] | 480 ] |
| OLD | NEW |