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 25 matching lines...) Expand all Loading... |
36 'webapp/base/js/auth_init.js', | 36 'webapp/base/js/auth_init.js', |
37 'webapp/crd/js/identity.js', | 37 'webapp/crd/js/identity.js', |
38 'webapp/crd/js/oauth2.js', | 38 'webapp/crd/js/oauth2.js', |
39 'webapp/crd/js/oauth2_api.js', | 39 'webapp/crd/js/oauth2_api.js', |
40 'webapp/crd/js/oauth2_api_impl.js', | 40 'webapp/crd/js/oauth2_api_impl.js', |
41 ], | 41 ], |
42 # Client JavaScript files. | 42 # Client JavaScript files. |
43 'remoting_webapp_js_client_files': [ | 43 'remoting_webapp_js_client_files': [ |
44 'webapp/crd/js/client_plugin.js', | 44 'webapp/crd/js/client_plugin.js', |
45 'webapp/crd/js/client_plugin_impl.js', | 45 'webapp/crd/js/client_plugin_impl.js', |
| 46 'webapp/crd/js/client_plugin_host_desktop_impl.js', |
46 # TODO(garykac) For client_screen: | 47 # TODO(garykac) For client_screen: |
47 # * Split out pin/access code stuff into separate file. | 48 # * Split out pin/access code stuff into separate file. |
48 # * Move client logic into session_connector | 49 # * Move client logic into session_connector |
49 'webapp/crd/js/client_screen.js', | 50 'webapp/crd/js/client_screen.js', |
50 'webapp/crd/js/client_session.js', | 51 'webapp/crd/js/client_session.js', |
51 'webapp/crd/js/clipboard.js', | 52 'webapp/crd/js/clipboard.js', |
52 'webapp/crd/js/desktop_connected_view.js', | 53 'webapp/crd/js/desktop_connected_view.js', |
53 'webapp/crd/js/hangout_session.js', | 54 'webapp/crd/js/hangout_session.js', |
| 55 'webapp/crd/js/host_desktop.js', |
54 'webapp/crd/js/session_connector.js', | 56 'webapp/crd/js/session_connector.js', |
55 'webapp/crd/js/session_connector_impl.js', | 57 'webapp/crd/js/session_connector_impl.js', |
56 'webapp/crd/js/smart_reconnector.js', | 58 'webapp/crd/js/smart_reconnector.js', |
57 'webapp/crd/js/video_frame_recorder.js', | 59 'webapp/crd/js/video_frame_recorder.js', |
58 ], | 60 ], |
59 # Remoting core JavaScript files. | 61 # Remoting core JavaScript files. |
60 'remoting_webapp_js_core_files': [ | 62 'remoting_webapp_js_core_files': [ |
61 'webapp/base/js/app_capabilities.js', | 63 'webapp/base/js/app_capabilities.js', |
62 'webapp/base/js/application.js', | 64 'webapp/base/js/application.js', |
63 'webapp/base/js/base.js', | 65 'webapp/base/js/base.js', |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 'webapp/crd/manifest.json.jinja2', | 372 'webapp/crd/manifest.json.jinja2', |
371 '<(remoting_webapp_template_main)', | 373 '<(remoting_webapp_template_main)', |
372 '<(remoting_webapp_template_wcs_sandbox)', | 374 '<(remoting_webapp_template_wcs_sandbox)', |
373 '<(remoting_webapp_template_background)', | 375 '<(remoting_webapp_template_background)', |
374 '<@(remoting_webapp_template_files)', | 376 '<@(remoting_webapp_template_files)', |
375 '<@(remoting_webapp_crd_js_files)', | 377 '<@(remoting_webapp_crd_js_files)', |
376 ], | 378 ], |
377 | 379 |
378 }, | 380 }, |
379 } | 381 } |
OLD | NEW |