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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 'webapp/crd/js/oauth2_api_impl.js', | 112 'webapp/crd/js/oauth2_api_impl.js', |
113 ], | 113 ], |
114 # Cast extension handler JavaScript files. | 114 # Cast extension handler JavaScript files. |
115 'remoting_webapp_js_cast_extension_files': [ | 115 'remoting_webapp_js_cast_extension_files': [ |
116 'webapp/crd/js/cast_extension_handler.js', | 116 'webapp/crd/js/cast_extension_handler.js', |
117 ], | 117 ], |
118 # Client JavaScript files. | 118 # Client JavaScript files. |
119 'remoting_webapp_js_client_files': [ | 119 'remoting_webapp_js_client_files': [ |
120 'webapp/crd/js/client_plugin.js', | 120 'webapp/crd/js/client_plugin.js', |
121 'webapp/crd/js/client_plugin_impl.js', | 121 'webapp/crd/js/client_plugin_impl.js', |
| 122 'webapp/crd/js/client_plugin_host_desktop_impl.js', |
122 # TODO(garykac) For client_screen: | 123 # TODO(garykac) For client_screen: |
123 # * Split out pin/access code stuff into separate file. | 124 # * Split out pin/access code stuff into separate file. |
124 # * Move client logic into session_connector | 125 # * Move client logic into session_connector |
125 'webapp/crd/js/client_screen.js', | 126 'webapp/crd/js/client_screen.js', |
126 'webapp/crd/js/client_session.js', | 127 'webapp/crd/js/client_session.js', |
127 'webapp/crd/js/clipboard.js', | 128 'webapp/crd/js/clipboard.js', |
128 'webapp/crd/js/desktop_connected_view.js', | 129 'webapp/crd/js/desktop_connected_view.js', |
129 'webapp/crd/js/hangout_session.js', | 130 'webapp/crd/js/hangout_session.js', |
| 131 'webapp/crd/js/host_desktop.js', |
130 'webapp/crd/js/session_connector.js', | 132 'webapp/crd/js/session_connector.js', |
131 'webapp/crd/js/session_connector_impl.js', | 133 'webapp/crd/js/session_connector_impl.js', |
132 'webapp/crd/js/smart_reconnector.js', | 134 'webapp/crd/js/smart_reconnector.js', |
133 'webapp/crd/js/video_frame_recorder.js', | 135 'webapp/crd/js/video_frame_recorder.js', |
134 ], | 136 ], |
135 # Remoting core JavaScript files. | 137 # Remoting core JavaScript files. |
136 'remoting_webapp_js_core_files': [ | 138 'remoting_webapp_js_core_files': [ |
137 'webapp/base/js/app_capabilities.js', | 139 'webapp/base/js/app_capabilities.js', |
138 'webapp/base/js/application.js', | 140 'webapp/base/js/application.js', |
139 'webapp/base/js/base.js', | 141 'webapp/base/js/base.js', |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 'webapp/crd/manifest.json.jinja2', | 390 'webapp/crd/manifest.json.jinja2', |
389 '<(remoting_webapp_template_main)', | 391 '<(remoting_webapp_template_main)', |
390 '<(remoting_webapp_template_wcs_sandbox)', | 392 '<(remoting_webapp_template_wcs_sandbox)', |
391 '<(remoting_webapp_template_background)', | 393 '<(remoting_webapp_template_background)', |
392 '<@(remoting_webapp_template_files)', | 394 '<@(remoting_webapp_template_files)', |
393 '<@(remoting_webapp_crd_js_files)', | 395 '<@(remoting_webapp_crd_js_files)', |
394 ], | 396 ], |
395 | 397 |
396 }, | 398 }, |
397 } | 399 } |
OLD | NEW |