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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
44 # * Split out pin/access code stuff into separate file. | 44 # * Split out pin/access code stuff into separate file. |
45 # * Move client logic into session_connector | 45 # * Move client logic into session_connector |
46 'webapp/client_screen.js', | 46 'webapp/client_screen.js', |
47 'webapp/client_session.js', | 47 'webapp/client_session.js', |
48 'webapp/clipboard.js', | 48 'webapp/clipboard.js', |
49 'webapp/media_source_renderer.js', | 49 'webapp/media_source_renderer.js', |
50 'webapp/session_connector.js', | 50 'webapp/session_connector.js', |
51 ], | 51 ], |
52 # Remoting core JavaScript files. | 52 # Remoting core JavaScript files. |
53 'remoting_webapp_js_core_files': [ | 53 'remoting_webapp_js_core_files': [ |
54 'webapp/base.js', | |
54 'webapp/error.js', | 55 'webapp/error.js', |
55 'webapp/event_handlers.js', | 56 'webapp/event_handlers.js', |
56 'webapp/plugin_settings.js', | 57 'webapp/plugin_settings.js', |
57 # TODO(garykac) Split out UI client stuff from remoting.js. | 58 # TODO(garykac) Split out UI client stuff from remoting.js. |
58 'webapp/remoting.js', | 59 'webapp/remoting.js', |
59 'webapp/typecheck.js', | 60 'webapp/typecheck.js', |
60 'webapp/xhr.js', | 61 'webapp/xhr.js', |
61 ], | 62 ], |
62 # Host JavaScript files. | 63 # Host JavaScript files. |
63 # Includes both it2me and me2me files. | 64 # Includes both it2me and me2me files. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
110 'webapp/wcs_loader.js', | 111 'webapp/wcs_loader.js', |
111 'webapp/wcs_sandbox_content.js', | 112 'webapp/wcs_sandbox_content.js', |
112 'webapp/xhr_proxy.js', | 113 'webapp/xhr_proxy.js', |
113 ], | 114 ], |
114 # gnubby authentication JavaScript files. | 115 # gnubby authentication JavaScript files. |
115 'remoting_webapp_js_gnubby_auth_files': [ | 116 'remoting_webapp_js_gnubby_auth_files': [ |
116 'webapp/gnubby_auth_handler.js', | 117 'webapp/gnubby_auth_handler.js', |
117 ], | 118 ], |
118 # The JavaScript files required by main.html. | 119 # The JavaScript files required by main.html. |
119 'remoting_webapp_main_html_js_files': [ | 120 'remoting_webapp_main_html_js_files': [ |
121 # Include the core files first as it is required by the other files. | |
122 # Otherwise, Jscompile will complain. | |
123 '<@(remoting_webapp_js_core_files)', | |
Jamie
2014/04/24 20:38:34
Please keep these alphabetic.
kelvinp
2014/04/24 21:38:32
Spoke with Jamie offline. I need to put core_file
| |
120 '<@(remoting_webapp_js_auth_client2host_files)', | 124 '<@(remoting_webapp_js_auth_client2host_files)', |
121 '<@(remoting_webapp_js_auth_google_files)', | 125 '<@(remoting_webapp_js_auth_google_files)', |
122 '<@(remoting_webapp_js_client_files)', | 126 '<@(remoting_webapp_js_client_files)', |
123 '<@(remoting_webapp_js_core_files)', | |
124 '<@(remoting_webapp_js_gnubby_auth_files)', | 127 '<@(remoting_webapp_js_gnubby_auth_files)', |
125 '<@(remoting_webapp_js_host_files)', | 128 '<@(remoting_webapp_js_host_files)', |
126 '<@(remoting_webapp_js_logging_files)', | 129 '<@(remoting_webapp_js_logging_files)', |
127 '<@(remoting_webapp_js_ui_files)', | 130 '<@(remoting_webapp_js_ui_files)', |
128 '<@(remoting_webapp_js_ui_host_control_files)', | 131 '<@(remoting_webapp_js_ui_host_control_files)', |
129 '<@(remoting_webapp_js_ui_host_display_files)', | 132 '<@(remoting_webapp_js_ui_host_display_files)', |
130 '<@(remoting_webapp_js_wcs_container_files)', | 133 '<@(remoting_webapp_js_wcs_container_files)', |
131 ], | 134 ], |
132 | 135 |
133 # The JavaScript files required by wcs_sandbox.html. | 136 # The JavaScript files required by wcs_sandbox.html. |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
205 'webapp/html/dialog_manage_pairings.html', | 208 'webapp/html/dialog_manage_pairings.html', |
206 'webapp/html/dialog_token_refresh_failed.html', | 209 'webapp/html/dialog_token_refresh_failed.html', |
207 'webapp/html/toolbar.html', | 210 'webapp/html/toolbar.html', |
208 'webapp/html/ui_header.html', | 211 'webapp/html/ui_header.html', |
209 'webapp/html/ui_it2me.html', | 212 'webapp/html/ui_it2me.html', |
210 'webapp/html/ui_me2me.html', | 213 'webapp/html/ui_me2me.html', |
211 ], | 214 ], |
212 | 215 |
213 }, | 216 }, |
214 } | 217 } |
OLD | NEW |