| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 ], | 139 ], |
| 140 # Cast extension handler JavaScript files. | 140 # Cast extension handler JavaScript files. |
| 141 'remoting_webapp_js_cast_extension_files': [ | 141 'remoting_webapp_js_cast_extension_files': [ |
| 142 'webapp/crd/js/cast_extension_handler.js', | 142 'webapp/crd/js/cast_extension_handler.js', |
| 143 ], | 143 ], |
| 144 # Client JavaScript files. | 144 # Client JavaScript files. |
| 145 'remoting_webapp_js_client_files': [ | 145 'remoting_webapp_js_client_files': [ |
| 146 'webapp/crd/js/client_plugin.js', | 146 'webapp/crd/js/client_plugin.js', |
| 147 'webapp/crd/js/client_plugin_impl.js', | 147 'webapp/crd/js/client_plugin_impl.js', |
| 148 'webapp/crd/js/client_plugin_host_desktop_impl.js', | 148 'webapp/crd/js/client_plugin_host_desktop_impl.js', |
| 149 # TODO(garykac) For client_screen: | |
| 150 # * Split out pin/access code stuff into separate file. | |
| 151 # * Move client logic into session_connector | |
| 152 'webapp/crd/js/client_screen.js', | |
| 153 'webapp/crd/js/client_session.js', | 149 'webapp/crd/js/client_session.js', |
| 154 'webapp/crd/js/clipboard.js', | 150 'webapp/crd/js/clipboard.js', |
| 155 'webapp/crd/js/credentials_provider.js', | 151 'webapp/crd/js/credentials_provider.js', |
| 156 'webapp/crd/js/desktop_connected_view.js', | 152 'webapp/crd/js/desktop_connected_view.js', |
| 157 'webapp/crd/js/host_desktop.js', | 153 'webapp/crd/js/host_desktop.js', |
| 158 'webapp/crd/js/session_connector.js', | 154 'webapp/crd/js/session_connector.js', |
| 159 'webapp/crd/js/session_connector_impl.js', | 155 'webapp/crd/js/session_connector_impl.js', |
| 160 'webapp/crd/js/smart_reconnector.js', | 156 'webapp/crd/js/smart_reconnector.js', |
| 161 'webapp/crd/js/video_frame_recorder.js', | 157 'webapp/crd/js/video_frame_recorder.js', |
| 162 ], | 158 ], |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 'webapp/crd/manifest.json.jinja2', | 407 'webapp/crd/manifest.json.jinja2', |
| 412 '<(remoting_webapp_template_main)', | 408 '<(remoting_webapp_template_main)', |
| 413 '<(remoting_webapp_template_wcs_sandbox)', | 409 '<(remoting_webapp_template_wcs_sandbox)', |
| 414 '<(remoting_webapp_template_background)', | 410 '<(remoting_webapp_template_background)', |
| 415 '<@(remoting_webapp_template_files)', | 411 '<@(remoting_webapp_template_files)', |
| 416 '<@(remoting_webapp_crd_js_files)', | 412 '<@(remoting_webapp_crd_js_files)', |
| 417 ], | 413 ], |
| 418 | 414 |
| 419 }, | 415 }, |
| 420 } | 416 } |
| OLD | NEW |