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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 'webapp/crd/js/clipboard.js', | 51 'webapp/crd/js/clipboard.js', |
52 'webapp/crd/js/hangout_session.js', | 52 'webapp/crd/js/hangout_session.js', |
53 'webapp/crd/js/media_source_renderer.js', | 53 'webapp/crd/js/media_source_renderer.js', |
54 'webapp/crd/js/session_connector.js', | 54 'webapp/crd/js/session_connector.js', |
55 'webapp/crd/js/session_connector_impl.js', | 55 'webapp/crd/js/session_connector_impl.js', |
56 'webapp/crd/js/smart_reconnector.js', | 56 'webapp/crd/js/smart_reconnector.js', |
57 'webapp/crd/js/video_frame_recorder.js', | 57 'webapp/crd/js/video_frame_recorder.js', |
58 ], | 58 ], |
59 # Remoting core JavaScript files. | 59 # Remoting core JavaScript files. |
60 'remoting_webapp_js_core_files': [ | 60 'remoting_webapp_js_core_files': [ |
| 61 'webapp/base/js/application.js', |
| 62 'webapp/base/js/application_delegate.js', |
61 'webapp/base/js/base.js', | 63 'webapp/base/js/base.js', |
62 'webapp/base/js/platform.js', | 64 'webapp/base/js/platform.js', |
63 'webapp/crd/js/error.js', | 65 'webapp/crd/js/error.js', |
64 'webapp/crd/js/event_handlers.js', | 66 'webapp/crd/js/event_handlers.js', |
65 'webapp/crd/js/plugin_settings.js', | 67 'webapp/crd/js/plugin_settings.js', |
66 # TODO(garykac) Split out UI client stuff from remoting.js. | 68 # TODO(garykac) Split out UI client stuff from remoting.js. |
67 'webapp/crd/js/remoting.js', | 69 'webapp/crd/js/remoting.js', |
68 'webapp/crd/js/typecheck.js', | 70 'webapp/crd/js/typecheck.js', |
69 'webapp/crd/js/xhr.js', | 71 'webapp/crd/js/xhr.js', |
70 ], | 72 ], |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 '<@(remoting_webapp_js_ui_host_display_files)', | 195 '<@(remoting_webapp_js_ui_host_display_files)', |
194 '<@(remoting_webapp_js_signaling_files)', | 196 '<@(remoting_webapp_js_signaling_files)', |
195 # Uncomment this line to include browser test files in the web app | 197 # Uncomment this line to include browser test files in the web app |
196 # to expedite debugging or local development. | 198 # to expedite debugging or local development. |
197 # '<@(remoting_webapp_js_browser_test_files)' | 199 # '<@(remoting_webapp_js_browser_test_files)' |
198 ], | 200 ], |
199 | 201 |
200 # The CRD-specific JavaScript files required by main.html. | 202 # The CRD-specific JavaScript files required by main.html. |
201 'remoting_webapp_crd_main_html_js_files': [ | 203 'remoting_webapp_crd_main_html_js_files': [ |
202 'webapp/crd/js/crd_main.js', | 204 'webapp/crd/js/crd_main.js', |
| 205 'webapp/crd/js/desktop_remoting.js', |
203 ], | 206 ], |
204 | 207 |
205 # The JavaScript files that are used in the background page. | 208 # The JavaScript files that are used in the background page. |
206 'remoting_webapp_background_js_files': [ | 209 'remoting_webapp_background_js_files': [ |
207 'webapp/base/js/base.js', | 210 'webapp/base/js/base.js', |
208 'webapp/base/js/message_window_helper.js', | 211 'webapp/base/js/message_window_helper.js', |
209 'webapp/base/js/message_window_manager.js', | 212 'webapp/base/js/message_window_manager.js', |
210 'webapp/crd/js/app_launcher.js', | 213 'webapp/crd/js/app_launcher.js', |
211 'webapp/crd/js/background.js', | 214 'webapp/crd/js/background.js', |
212 'webapp/crd/js/client_session.js', | 215 'webapp/crd/js/client_session.js', |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 'webapp/crd/html/dialog_token_refresh_failed.html', | 327 'webapp/crd/html/dialog_token_refresh_failed.html', |
325 'webapp/crd/html/toolbar.html', | 328 'webapp/crd/html/toolbar.html', |
326 'webapp/crd/html/ui_header.html', | 329 'webapp/crd/html/ui_header.html', |
327 'webapp/crd/html/ui_it2me.html', | 330 'webapp/crd/html/ui_it2me.html', |
328 'webapp/crd/html/ui_me2me.html', | 331 'webapp/crd/html/ui_me2me.html', |
329 'webapp/crd/html/window_frame.html', | 332 'webapp/crd/html/window_frame.html', |
330 ], | 333 ], |
331 | 334 |
332 }, | 335 }, |
333 } | 336 } |
OLD | NEW |