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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 'remoting_webapp_js_client_files': [ | 120 'remoting_webapp_js_client_files': [ |
121 'webapp/crd/js/client_plugin.js', | 121 'webapp/crd/js/client_plugin.js', |
122 'webapp/crd/js/client_plugin_impl.js', | 122 'webapp/crd/js/client_plugin_impl.js', |
123 'webapp/crd/js/client_plugin_host_desktop_impl.js', | 123 'webapp/crd/js/client_plugin_host_desktop_impl.js', |
124 # TODO(garykac) For client_screen: | 124 # TODO(garykac) For client_screen: |
125 # * Split out pin/access code stuff into separate file. | 125 # * Split out pin/access code stuff into separate file. |
126 # * Move client logic into session_connector | 126 # * Move client logic into session_connector |
127 'webapp/crd/js/client_screen.js', | 127 'webapp/crd/js/client_screen.js', |
128 'webapp/crd/js/client_session.js', | 128 'webapp/crd/js/client_session.js', |
129 'webapp/crd/js/clipboard.js', | 129 'webapp/crd/js/clipboard.js', |
| 130 'webapp/crd/js/credentials_provider.js', |
130 'webapp/crd/js/desktop_connected_view.js', | 131 'webapp/crd/js/desktop_connected_view.js', |
131 'webapp/crd/js/hangout_session.js', | 132 'webapp/crd/js/hangout_session.js', |
132 'webapp/crd/js/host_desktop.js', | 133 'webapp/crd/js/host_desktop.js', |
133 'webapp/crd/js/session_connector.js', | 134 'webapp/crd/js/session_connector.js', |
134 'webapp/crd/js/session_connector_impl.js', | 135 'webapp/crd/js/session_connector_impl.js', |
135 'webapp/crd/js/smart_reconnector.js', | 136 'webapp/crd/js/smart_reconnector.js', |
136 'webapp/crd/js/video_frame_recorder.js', | 137 'webapp/crd/js/video_frame_recorder.js', |
137 ], | 138 ], |
138 # Remoting core JavaScript files. | 139 # Remoting core JavaScript files. |
139 'remoting_webapp_js_core_files': [ | 140 'remoting_webapp_js_core_files': [ |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 'webapp/crd/manifest.json.jinja2', | 394 'webapp/crd/manifest.json.jinja2', |
394 '<(remoting_webapp_template_main)', | 395 '<(remoting_webapp_template_main)', |
395 '<(remoting_webapp_template_wcs_sandbox)', | 396 '<(remoting_webapp_template_wcs_sandbox)', |
396 '<(remoting_webapp_template_background)', | 397 '<(remoting_webapp_template_background)', |
397 '<@(remoting_webapp_template_files)', | 398 '<@(remoting_webapp_template_files)', |
398 '<@(remoting_webapp_crd_js_files)', | 399 '<@(remoting_webapp_crd_js_files)', |
399 ], | 400 ], |
400 | 401 |
401 }, | 402 }, |
402 } | 403 } |
OLD | NEW |