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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 'webapp/crd/js/client_plugin_host_desktop_impl.js', |
123 # TODO(garykac) For client_screen: | |
124 # * Split out pin/access code stuff into separate file. | |
125 # * Move client logic into session_connector | |
126 'webapp/crd/js/client_screen.js', | |
127 'webapp/crd/js/client_session.js', | 123 'webapp/crd/js/client_session.js', |
128 'webapp/crd/js/clipboard.js', | 124 'webapp/crd/js/clipboard.js', |
129 'webapp/crd/js/desktop_connected_view.js', | 125 'webapp/crd/js/desktop_connected_view.js', |
130 'webapp/crd/js/hangout_session.js', | 126 'webapp/crd/js/hangout_session.js', |
131 'webapp/crd/js/host_desktop.js', | 127 'webapp/crd/js/host_desktop.js', |
132 'webapp/crd/js/session_connector.js', | 128 'webapp/crd/js/session_connector.js', |
133 'webapp/crd/js/session_connector_impl.js', | 129 'webapp/crd/js/session_connector_impl.js', |
134 'webapp/crd/js/smart_reconnector.js', | 130 'webapp/crd/js/smart_reconnector.js', |
135 'webapp/crd/js/video_frame_recorder.js', | 131 'webapp/crd/js/video_frame_recorder.js', |
136 ], | 132 ], |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 'webapp/crd/manifest.json.jinja2', | 388 'webapp/crd/manifest.json.jinja2', |
393 '<(remoting_webapp_template_main)', | 389 '<(remoting_webapp_template_main)', |
394 '<(remoting_webapp_template_wcs_sandbox)', | 390 '<(remoting_webapp_template_wcs_sandbox)', |
395 '<(remoting_webapp_template_background)', | 391 '<(remoting_webapp_template_background)', |
396 '<@(remoting_webapp_template_files)', | 392 '<@(remoting_webapp_template_files)', |
397 '<@(remoting_webapp_crd_js_files)', | 393 '<@(remoting_webapp_crd_js_files)', |
398 ], | 394 ], |
399 | 395 |
400 }, | 396 }, |
401 } | 397 } |
OLD | NEW |