blob: 4a98cbbf68db0560136bdc2c3ebca9dfc6f61b33 [file] [log] [blame]
[email protected]af2d58182014-01-25 01:21:421# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
garykaced09d9af2015-04-28 22:28:145# `7MM"""Mq. `7MM
6# MM `MM. MM
7# MM ,M9 .gP"Ya ,6"Yb. ,M""bMM `7MMpMMMb.pMMMb. .gP"Ya
8# MMmmdM9 ,M' Yb 8) MM ,AP MM MM MM MM ,M' Yb
9# MM YM. 8M"""""" ,pm9MM 8MI MM MM MM MM 8M""""""
10# MM `Mb.YM. , 8M MM `Mb MM MM MM MM YM. ,
11# .JMML. .JMM.`Mbmmd' `Moo9^Yo.`Wbmd"MML..JMML JMML JMML.`Mbmmd'
12#
13# Please keep this file in sync with remoting/webapp/files.gni.
garykac3eddb5b2015-04-17 23:16:3814
[email protected]af2d58182014-01-25 01:21:4215{
16 'variables': {
[email protected]af2d58182014-01-25 01:21:4217
jhawkins13c5c4632015-06-22 18:39:5418 # JSCompiler externs.
19 'remoting_webapp_js_externs_files': [
20 'webapp/externs/qunit.js',
21 ],
22
[email protected]cbc8bb02014-01-28 18:01:5323 # Jscompile proto files.
24 # These provide type information for jscompile.
25 'remoting_webapp_js_proto_files': [
26 'webapp/js_proto/chrome_proto.js',
garykac818c8012015-03-02 18:37:4727 'webapp/js_proto/chrome_cast_proto.js',
[email protected]cbc8bb02014-01-28 18:01:5328 'webapp/js_proto/dom_proto.js',
29 'webapp/js_proto/remoting_proto.js',
30 ],
31
garykacb70d4632015-02-19 02:58:5232 #
garykac818c8012015-03-02 18:37:4733 # Webapp browsertest JavaScript files.
garykacb70d4632015-02-19 02:58:5234 #
35
garykacb70d4632015-02-19 02:58:5236 # Browser test files.
37 'remoting_webapp_browsertest_js_files': [
38 'webapp/browser_test/browser_test.js',
39 'webapp/browser_test/bump_scroll_browser_test.js',
40 'webapp/browser_test/cancel_pin_browser_test.js',
41 'webapp/browser_test/invalid_pin_browser_test.js',
42 'webapp/browser_test/it2me_browser_test.js',
kelvinpbbaef9c22015-05-07 02:11:3543 'webapp/browser_test/me2me_browser_test.js',
garykacb70d4632015-02-19 02:58:5244 'webapp/browser_test/scrollbar_browser_test.js',
45 'webapp/browser_test/timeout_waiter.js',
46 'webapp/browser_test/unauthenticated_browser_test.js',
47 'webapp/browser_test/update_pin_browser_test.js',
48 ],
garykac818c8012015-03-02 18:37:4749 # Browser test files.
50 'remoting_webapp_browsertest_js_mock_files': [
wez0f929882015-03-12 16:19:1951 'webapp/crd/js/mock_client_plugin.js',
52 'webapp/crd/js/mock_host_list_api.js',
53 'webapp/crd/js/mock_identity.js',
54 'webapp/crd/js/mock_oauth2_api.js',
wez0f929882015-03-12 16:19:1955 'webapp/crd/js/mock_signal_strategy.js',
garykac818c8012015-03-02 18:37:4756 ],
57 'remoting_webapp_browsertest_js_proto_files': [
58 'webapp/js_proto/sinon_proto.js',
59 'webapp/js_proto/test_proto.js',
60 '<@(remoting_webapp_js_proto_files)',
61 ],
garykacb70d4632015-02-19 02:58:5262 'remoting_webapp_browsertest_all_js_files': [
63 '<@(remoting_webapp_browsertest_js_files)',
garykac818c8012015-03-02 18:37:4764 '<@(remoting_webapp_browsertest_js_mock_files)',
garykacb70d4632015-02-19 02:58:5265 ],
kelvinp14c59712015-04-29 05:20:4366 'remoting_webapp_browsertest_main_html_extra_files': [
67 '<@(remoting_webapp_browsertest_all_js_files)',
68 '../third_party/sinonjs/src/sinon.js',
69 ],
garykacb70d4632015-02-19 02:58:5270
garykac818c8012015-03-02 18:37:4771 #
72 # Webapp unittest JavaScript files.
73 #
74
garykacb70d4632015-02-19 02:58:5275 # These product files are excluded from our JavaScript unittest
wez0f929882015-03-12 16:19:1976 'remoting_webapp_unittests_exclude_js_files': [
garykacb70d4632015-02-19 02:58:5277 # background.js is where the onLoad handler is defined, which
78 # makes it the entry point of the background page.
79 'webapp/crd/js/background.js',
80 ],
81 # The unit test cases for the webapp
wez0f929882015-03-12 16:19:1982 'remoting_webapp_unittests_js_files': [
83 'webapp/base/js/base_unittest.js',
84 'webapp/base/js/base_event_hook_unittest.js',
kelvinp718f4e82015-03-20 23:19:4785 'webapp/base/js/base_inherits_unittest.js',
jamiewalch8c4da592015-07-29 19:37:5386 'webapp/base/js/callstack_unittest.js',
garykac43a567e2015-05-11 17:48:3387 'webapp/base/js/client_session_unittest.js',
88 'webapp/base/js/client_session_factory_unittest.js',
jamiewalch8c4da592015-07-29 19:37:5389 'webapp/base/js/console_wrapper_unittest.js',
garykac43a567e2015-05-11 17:48:3390 'webapp/base/js/dns_blackhole_checker_unittest.js',
91 'webapp/base/js/error_unittest.js',
92 'webapp/base/js/fallback_signal_strategy_unittest.js',
jamiewalch5816f582015-09-25 19:30:4493 'webapp/base/js/host_options_unittest.js',
garykac43a567e2015-05-11 17:48:3394 'webapp/base/js/identity_unittest.js',
wez0f929882015-03-12 16:19:1995 'webapp/base/js/ipc_unittest.js',
garykac43a567e2015-05-11 17:48:3396 'webapp/base/js/l10n_unittest.js',
kelvinpbdf351e52015-10-07 21:19:5197 'webapp/base/js/network_connectivity_detector_unittest.js',
kelvinpe989257af2015-06-06 02:56:4298 'webapp/base/js/platform_unittest.js',
kelvinp25f89e582015-04-08 01:20:5099 'webapp/base/js/protocol_extension_manager_unittest.js',
kelvinpd3c19412015-06-26 23:27:34100 'webapp/base/js/session_logger_unittest.js',
kelvinpf2c15c32015-06-25 21:31:29101 'webapp/base/js/telemetry_event_writer_unittest.js',
garykac43a567e2015-05-11 17:48:33102 'webapp/base/js/typecheck_unittest.js',
garykac828a33d2015-04-27 16:23:50103 'webapp/base/js/viewport_unittest.js',
kelvinp41b04f32015-05-19 18:51:32104 'webapp/base/js/window_shape_unittest.js',
weitaosu574f3042015-06-23 22:55:56105 'webapp/base/js/window_message_dispatcher_unittest.js',
kelvinpe0e0c0d2015-06-18 17:57:16106 'webapp/base/js/xhr_event_writer_unittest.js',
garykac43a567e2015-05-11 17:48:33107 'webapp/base/js/xhr_unittest.js',
108 'webapp/base/js/xmpp_connection_unittest.js',
kelvinp6c4f3d72015-08-19 02:12:44109 'webapp/base/js/xmpp_error_cache_unittest.js',
garykac43a567e2015-05-11 17:48:33110 'webapp/base/js/xmpp_login_handler_unittest.js',
111 'webapp/base/js/xmpp_stream_parser_unittest.js',
wez0f929882015-03-12 16:19:19112 'webapp/crd/js/apps_v2_migration_unittest.js',
jrw43c09162015-07-21 20:28:11113 'webapp/crd/js/combined_host_list_api_unittest.js',
jrw12e3cb32015-03-31 00:58:14114 'webapp/crd/js/gcd_client_unittest.js',
jrw58e816f02015-04-07 19:59:12115 'webapp/crd/js/gcd_client_with_mock_xhr_unittest.js',
joedowdadef9882016-02-20 17:44:06116 "webapp/crd/js/gnubby_auth_handler_unittest.js",
jrwf326e5a2015-04-09 20:20:49117 'webapp/crd/js/host_controller_unittest.js',
jrw133be792015-04-08 01:12:28118 'webapp/crd/js/host_daemon_facade_unittest.js',
wez0f929882015-03-12 16:19:19119 'webapp/crd/js/host_table_entry_unittest.js',
jrw5ffa27c2015-06-10 22:56:24120 'webapp/crd/js/legacy_host_list_api_unittest.js',
wez0f929882015-03-12 16:19:19121 'webapp/crd/js/menu_button_unittest.js',
kelvinp676288912015-08-27 00:27:21122 'webapp/crd/js/me2me_telemetry_integration_test.js',
jrw58e816f02015-04-07 19:59:12123 'webapp/crd/js/mock_xhr_unittest.js',
garykacb70d4632015-02-19 02:58:52124 ],
wez0f929882015-03-12 16:19:19125 'remoting_webapp_unittests_js_mock_files': [
kelvinp2c5de342015-04-20 18:52:01126 'webapp/crd/js/mock_client_plugin.js',
jrwf326e5a2015-04-09 20:20:49127 'webapp/crd/js/mock_host_daemon_facade.js',
jrw300af592015-04-18 02:10:28128 'webapp/crd/js/mock_host_list_api.js',
kelvinp676288912015-08-27 00:27:21129 'webapp/crd/js/mock_modal_dialog_factory.js',
jrw300af592015-04-18 02:10:28130 'webapp/crd/js/mock_identity.js',
wez0f929882015-03-12 16:19:19131 'webapp/crd/js/mock_signal_strategy.js',
kelvinp676288912015-08-27 00:27:21132 'webapp/crd/js/remoting_activity_test_driver.js',
wez0f929882015-03-12 16:19:19133 'webapp/js_proto/chrome_mocks.js',
garykac818c8012015-03-02 18:37:47134 'webapp/unittests/sinon_helpers.js',
jrw58e816f02015-04-07 19:59:12135 'webapp/crd/js/mock_xhr.js',
garykac818c8012015-03-02 18:37:47136 ],
137 # Prototypes for objects that are not mocked.
wez0f929882015-03-12 16:19:19138 'remoting_webapp_unittests_js_proto_files': [
garykac818c8012015-03-02 18:37:47139 'webapp/js_proto/chrome_cast_proto.js',
kelvinp1a8d5b22015-05-26 21:32:52140 'webapp/js_proto/chrome_proto.js',
garykac818c8012015-03-02 18:37:47141 'webapp/js_proto/dom_proto.js',
142 'webapp/js_proto/remoting_proto.js',
garykac818c8012015-03-02 18:37:47143 'webapp/js_proto/sinon_proto.js',
garykac818c8012015-03-02 18:37:47144 ],
wez0f929882015-03-12 16:19:19145 'remoting_webapp_unittests_all_js_files': [
146 '<@(remoting_webapp_unittests_js_files)',
147 '<@(remoting_webapp_unittests_js_mock_files)',
kelvinp1a8d5b22015-05-26 21:32:52148 'webapp/unittests/qunit_callbacks.js',
garykacb70d4632015-02-19 02:58:52149 ],
garykac818c8012015-03-02 18:37:47150 # All the files needed to run the unittests.
wez0f929882015-03-12 16:19:19151 'remoting_webapp_unittests_all_files': [
garykacb70d4632015-02-19 02:58:52152 'webapp/crd/html/menu_button.css',
wez0f929882015-03-12 16:19:19153 '<@(remoting_webapp_unittests_all_js_files)',
garykacb70d4632015-02-19 02:58:52154 ],
wez0f929882015-03-12 16:19:19155 'remoting_webapp_unittests_template_main':
156 'webapp/crd/html/template_unittests.html',
garykacb70d4632015-02-19 02:58:52157
158 #
garykac43a567e2015-05-11 17:48:33159 # Shared webapp JavaScript file groups.
160 #
161
162 # Auth (Google account) JavaScript files.
163 'remoting_webapp_shared_js_auth_google_files': [
164 'webapp/base/js/auth_init.js',
165 'webapp/base/js/identity.js',
166 'webapp/base/js/oauth2.js',
167 'webapp/base/js/oauth2_api.js',
168 'webapp/base/js/oauth2_api_impl.js',
169 ],
170 # Client JavaScript files.
171 'remoting_webapp_shared_js_client_files': [
172 'webapp/base/js/activity.js',
173 'webapp/base/js/client_plugin.js',
174 'webapp/base/js/client_plugin_host_desktop_impl.js',
175 'webapp/base/js/client_plugin_impl.js',
176 'webapp/base/js/client_session.js',
177 'webapp/base/js/client_session_factory.js',
178 'webapp/base/js/clipboard.js',
179 'webapp/base/js/connected_view.js',
180 'webapp/base/js/connection_info.js',
181 'webapp/base/js/credentials_provider.js',
sergeyubbcbf5b2015-08-04 20:14:07182 'webapp/base/js/experiments.js',
garykac43a567e2015-05-11 17:48:33183 'webapp/base/js/host_desktop.js',
kelvinpf2c15c32015-06-25 21:31:29184 'webapp/base/js/telemetry_event_writer.js',
kelvinp6c4f3d72015-08-19 02:12:44185 'webapp/base/js/xmpp_error_cache.js',
garykac43a567e2015-05-11 17:48:33186 ],
187 # Remoting core JavaScript files.
188 'remoting_webapp_shared_js_core_files': [
garykac43a567e2015-05-11 17:48:33189 'webapp/base/js/application.js',
190 'webapp/base/js/base.js',
jamiewalch8c4da592015-07-29 19:37:53191 'webapp/base/js/callstack.js',
192 'webapp/base/js/console_wrapper.js',
garykac43a567e2015-05-11 17:48:33193 'webapp/base/js/ipc.js',
194 'webapp/base/js/modal_dialogs.js',
195 'webapp/base/js/platform.js',
196 'webapp/base/js/protocol_extension_manager.js',
197 'webapp/base/js/protocol_extension.js',
198 'webapp/base/js/error.js',
kelvinpbdf351e52015-10-07 21:19:51199 'webapp/base/js/network_connectivity_detector.js',
garykac43a567e2015-05-11 17:48:33200 'webapp/base/js/plugin_settings.js',
kelvinp2a8128f2015-05-27 00:54:01201 'webapp/base/js/suspend_detector.js',
garykac43a567e2015-05-11 17:48:33202 'webapp/base/js/typecheck.js',
kelvinpe0e0c0d2015-06-18 17:57:16203 'webapp/base/js/xhr_event_writer.js',
weitaosu9393e1ee2015-07-31 19:34:32204 'webapp/base/js/window_message_dispatcher.js',
garykac43a567e2015-05-11 17:48:33205 'webapp/base/js/xhr.js',
206 ],
207 # Host JavaScript files.
208 'remoting_webapp_shared_js_host_files': [
209 'webapp/base/js/host.js',
jamiewalch5816f582015-09-25 19:30:44210 'webapp/base/js/host_options.js',
garykac43a567e2015-05-11 17:48:33211 ],
212 # Logging and stats JavaScript files.
213 'remoting_webapp_shared_js_logging_files': [
kelvinpc41125a2015-06-25 20:20:41214 'webapp/base/js/chromoting_event.js',
garykac43a567e2015-05-11 17:48:33215 'webapp/base/js/format_iq.js',
kelvinpd3c19412015-06-26 23:27:34216 'webapp/base/js/session_logger.js',
garykac43a567e2015-05-11 17:48:33217 'webapp/base/js/stats_accumulator.js',
218 ],
219 # Remoting signaling files.
220 'remoting_webapp_shared_js_signaling_files': [
221 'webapp/base/js/dns_blackhole_checker.js',
222 'webapp/base/js/fallback_signal_strategy.js',
223 'webapp/base/js/signal_strategy.js',
224 'webapp/base/js/tcp_socket.js',
225 'webapp/base/js/wcs_adapter.js',
226 'webapp/base/js/wcs_sandbox_container.js',
227 'webapp/base/js/xmpp_connection.js',
228 'webapp/base/js/xmpp_login_handler.js',
229 'webapp/base/js/xmpp_stream_parser.js',
230 ],
231 # Shared UI JavaScript files.
232 'remoting_webapp_shared_js_ui_files': [
kelvinpc1be5112015-05-27 21:39:25233 'webapp/base/js/connection_dropped_dialog.js',
garykac43a567e2015-05-11 17:48:33234 'webapp/base/js/connection_stats.js',
235 'webapp/base/js/l10n.js',
236 'webapp/base/js/ui_mode.js',
237 'webapp/base/js/viewport.js',
238 'webapp/base/js/window_shape.js',
239 ],
240
241 #
242 # DesktopRemoting webapp JavaScript file groups.
garykacb70d4632015-02-19 02:58:52243 #
244
[email protected]cb896cc2014-02-20 00:35:31245 # Auth (apps v1) JavaScript files.
246 # These files aren't included directly from main.html. They are
247 # referenced from the manifest.json file (appsv1 only).
248 'remoting_webapp_js_auth_v1_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07249 'webapp/crd/js/cs_third_party_auth_trampoline.js', # client to host
250 'webapp/crd/js/cs_oauth2_trampoline.js', # Google account
[email protected]cb896cc2014-02-20 00:35:31251 ],
[email protected]af2d58182014-01-25 01:21:42252 # Auth (client to host) JavaScript files.
253 'remoting_webapp_js_auth_client2host_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07254 'webapp/crd/js/third_party_host_permissions.js',
255 'webapp/crd/js/third_party_token_fetcher.js',
[email protected]af2d58182014-01-25 01:21:42256 ],
garykacb70d4632015-02-19 02:58:52257 # Cast extension handler JavaScript files.
258 'remoting_webapp_js_cast_extension_files': [
259 'webapp/crd/js/cast_extension_handler.js',
260 ],
[email protected]fd1468352014-02-06 10:38:47261 # Client JavaScript files.
[email protected]af2d58182014-01-25 01:21:42262 'remoting_webapp_js_client_files': [
kelvinpef56d872015-01-22 03:13:36263 'webapp/crd/js/apps_v2_migration.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07264 'webapp/crd/js/event_handlers.js',
jrw12e3cb32015-03-31 00:58:14265 'webapp/crd/js/gcd_client.js',
garykac43a567e2015-05-11 17:48:33266 'webapp/crd/js/video_frame_recorder.js',
[email protected]af2d58182014-01-25 01:21:42267 ],
garykacb70d4632015-02-19 02:58:52268 # Gnubby authentication JavaScript files.
269 'remoting_webapp_js_gnubby_auth_files': [
270 'webapp/crd/js/gnubby_auth_handler.js',
271 ],
garykac846c7c72014-12-19 23:36:14272 # Files for controlling the local machine as a host.
273 # Includes both it2me and me2me files.
274 'remoting_webapp_js_host_control_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07275 'webapp/crd/js/host_controller.js',
276 'webapp/crd/js/host_daemon_facade.js',
garykac846c7c72014-12-19 23:36:14277 'webapp/crd/js/host_screen.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07278 'webapp/crd/js/host_session.js',
garykac846c7c72014-12-19 23:36:14279 'webapp/crd/js/host_setup_dialog.js',
280 'webapp/crd/js/host_install_dialog.js',
281 'webapp/crd/js/host_installer.js',
282 'webapp/crd/js/it2me_host_facade.js',
jamiewalcha1826482015-08-21 00:11:22283 'webapp/crd/js/native_message_host_log_message_handler.js',
garykac846c7c72014-12-19 23:36:14284 'webapp/crd/js/paired_client_manager.js',
285 ],
kelvinp08d28522015-10-01 19:16:15286 # Files for controlling the local it2me host.
287 # Included by public_session.html.
288 'remoting_webapp_js_it2me_host_control_files': [
kelvinp08d28522015-10-01 19:16:15289 'webapp/crd/js/host_screen.js',
290 'webapp/crd/js/host_session.js',
291 'webapp/crd/js/host_install_dialog.js',
292 'webapp/crd/js/host_installer.js',
293 'webapp/crd/js/it2me_host_facade.js',
294 'webapp/crd/js/native_message_host_log_message_handler.js',
295 ],
garykac846c7c72014-12-19 23:36:14296 # Files for displaying (in the client) info about available hosts.
297 'remoting_webapp_js_host_display_files': [
298 'webapp/crd/js/host_list.js',
jamiewalchb8749522015-01-05 20:00:49299 'webapp/crd/js/host_list_api.js',
garykac846c7c72014-12-19 23:36:14300 'webapp/crd/js/host_table_entry.js',
kelvinpf95677a2015-03-04 08:57:51301 'webapp/crd/js/local_host_section.js',
jrw5ffa27c2015-06-10 22:56:24302
303 # Must come after host_list_api.js because of an issue with
304 # JSCompiler. If an implementation of an interface occurs in a
305 # file processed before the interface itself, the @override tag
306 # doesn't always work correctly.
jrw43c09162015-07-21 20:28:11307 'webapp/crd/js/combined_host_list_api.js',
jrw5ffa27c2015-06-10 22:56:24308 'webapp/crd/js/gcd_host_list_api.js',
309 'webapp/crd/js/legacy_host_list_api.js',
[email protected]af2d58182014-01-25 01:21:42310 ],
garykac5b228c892015-04-28 01:03:07311 # The CRD-specific JavaScript files required by main.html.
312 'remoting_webapp_crd_js_ui_files': [
kelvinp1e259c472015-02-24 01:03:04313 'webapp/crd/js/bump_scroller.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07314 'webapp/crd/js/butter_bar.js',
garykac5b228c892015-04-28 01:03:07315 'webapp/crd/js/crd_auth_dialog.js',
316 'webapp/crd/js/crd_event_handlers.js',
317 'webapp/crd/js/crd_experimental.js',
318 'webapp/crd/js/desktop_connected_view.js',
319 'webapp/crd/js/desktop_remoting.js',
320 'webapp/crd/js/desktop_remoting_activity.js',
kelvinp1e259c472015-02-24 01:03:04321 'webapp/crd/js/desktop_viewport.js',
garykac43a567e2015-05-11 17:48:33322 'webapp/crd/js/feedback.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07323 'webapp/crd/js/fullscreen.js',
324 'webapp/crd/js/fullscreen_v1.js',
325 'webapp/crd/js/fullscreen_v2.js',
garykac5b228c892015-04-28 01:03:07326 'webapp/crd/js/it2me_activity.js',
327 'webapp/crd/js/me2me_activity.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07328 'webapp/crd/js/menu_button.js',
329 'webapp/crd/js/options_menu.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07330 'webapp/crd/js/toolbar.js',
331 'webapp/crd/js/window_frame.js',
[email protected]af2d58182014-01-25 01:21:42332 ],
garykac9547d1f2015-03-06 19:42:55333
334 #
335 # DesktopRemoting main.html generation files.
336 #
337
338 'remoting_webapp_template_main':
339 '<(DEPTH)/remoting/webapp/crd/html/template_main.html',
[email protected]78485562014-06-23 21:12:45340
garykac7b15ac052014-12-02 03:12:37341 # The shared JavaScript files required by main.html.
garykac43a567e2015-05-11 17:48:33342 # These files are shared with the unittest target.
garykac7b15ac052014-12-02 03:12:37343 'remoting_webapp_shared_main_html_js_files': [
[email protected]f8881a72014-04-25 08:55:18344 # Include the core files first as it is required by the other files.
345 # Otherwise, Jscompile will complain.
garykac43a567e2015-05-11 17:48:33346 '<@(remoting_webapp_shared_js_core_files)',
347 '<@(remoting_webapp_shared_js_auth_google_files)',
348 '<@(remoting_webapp_shared_js_client_files)',
349 '<@(remoting_webapp_shared_js_host_files)',
350 '<@(remoting_webapp_shared_js_logging_files)',
351 '<@(remoting_webapp_shared_js_signaling_files)',
352 '<@(remoting_webapp_shared_js_ui_files)',
[email protected]af2d58182014-01-25 01:21:42353 '<@(remoting_webapp_js_auth_client2host_files)',
[email protected]af2d58182014-01-25 01:21:42354 '<@(remoting_webapp_js_client_files)',
[email protected]de101e12014-02-27 04:12:08355 '<@(remoting_webapp_js_gnubby_auth_files)',
[email protected]2f4e73e2014-08-16 08:35:47356 '<@(remoting_webapp_js_cast_extension_files)',
garykac846c7c72014-12-19 23:36:14357 '<@(remoting_webapp_js_host_control_files)',
358 '<@(remoting_webapp_js_host_display_files)',
[email protected]f34acc692014-08-12 22:47:14359 ],
360
kelvinp08d28522015-10-01 19:16:15361 'remoting_webapp_template_public_session':
362 '<(DEPTH)/remoting/webapp/crd/html/template_public_session.html',
363
364 # The shared JavaScript files required by public_session.html.
365 'remoting_webapp_public_session_html_all_js_files': [
366 '<@(remoting_webapp_shared_js_core_files)',
367 '<@(remoting_webapp_shared_js_auth_google_files)',
368 '<@(remoting_webapp_shared_js_client_files)',
369 '<@(remoting_webapp_shared_js_host_files)',
370 '<@(remoting_webapp_shared_js_logging_files)',
371 '<@(remoting_webapp_shared_js_signaling_files)',
372 '<@(remoting_webapp_shared_js_ui_files)',
373 '<@(remoting_webapp_js_it2me_host_control_files)',
374 'webapp/crd/js/public_session_main.js',
375 ],
376
377 # These template files are used to construct public_session.html.
378 'remoting_webapp_public_session_template_files': [
379 'webapp/crd/html/dialog_host.html',
380 ],
381
garykac5b228c892015-04-28 01:03:07382 # The JS files required by unittest.html.
383 'remoting_webapp_unittest_html_all_js_files': [
384 '<@(remoting_webapp_shared_main_html_js_files)',
385 '<@(remoting_webapp_crd_js_ui_files)',
386 ],
387
garykac7b15ac052014-12-02 03:12:37388 # The CRD-specific JavaScript files required by main.html.
garykac9547d1f2015-03-06 19:42:55389 'remoting_webapp_crd_main_html_all_js_files': [
390 '<@(remoting_webapp_shared_main_html_js_files)',
garykac5b228c892015-04-28 01:03:07391 '<@(remoting_webapp_crd_js_ui_files)',
garykac7b15ac052014-12-02 03:12:37392 'webapp/crd/js/crd_main.js',
393 ],
394
garykac9547d1f2015-03-06 19:42:55395 # These template files are used to construct main.html.
[email protected]cb896cc2014-02-20 00:35:31396 'remoting_webapp_template_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07397 'webapp/base/html/client_plugin.html',
Gary Kacmarcikac6b679f2014-11-13 20:52:17398 'webapp/crd/html/butter_bar.html',
jamiewalchd0bb0df2015-03-24 00:37:32399 'webapp/crd/html/dialog_auth.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07400 'webapp/crd/html/dialog_client_connect_failed.html',
401 'webapp/crd/html/dialog_client_connecting.html',
402 'webapp/crd/html/dialog_client_host_needs_upgrade.html',
403 'webapp/crd/html/dialog_client_pin_prompt.html',
404 'webapp/crd/html/dialog_client_session_finished.html',
405 'webapp/crd/html/dialog_client_third_party_auth.html',
406 'webapp/crd/html/dialog_client_unconnected.html',
407 'webapp/crd/html/dialog_confirm_host_delete.html',
408 'webapp/crd/html/dialog_connection_history.html',
409 'webapp/crd/html/dialog_host.html',
410 'webapp/crd/html/dialog_host_install.html',
411 'webapp/crd/html/dialog_host_setup.html',
412 'webapp/crd/html/dialog_manage_pairings.html',
413 'webapp/crd/html/dialog_token_refresh_failed.html',
414 'webapp/crd/html/toolbar.html',
415 'webapp/crd/html/ui_header.html',
416 'webapp/crd/html/ui_it2me.html',
417 'webapp/crd/html/ui_me2me.html',
418 'webapp/crd/html/window_frame.html',
[email protected]cb896cc2014-02-20 00:35:31419 ],
420
garykac9547d1f2015-03-06 19:42:55421 #
422 # Webapp background.html generation files.
423 #
424
425 'remoting_webapp_template_background':
426 '<(DEPTH)/remoting/webapp/crd/html/template_background.html',
427
428 # These JS files are specific to the background page and are not part of
429 # the main JS files.
430 'remoting_webapp_background_html_js_files': [
kelvinpe36476e2015-06-30 02:07:04431 'webapp/base/js/chromoting_event.js',
garykac9547d1f2015-03-06 19:42:55432 'webapp/crd/js/activation_handler.js',
433 'webapp/crd/js/app_launcher.js',
434 'webapp/crd/js/background.js',
435 ],
436
437 # All the JavaScript files required by background.html.
438 'remoting_webapp_background_html_all_js_files': [
439 '<@(remoting_webapp_background_html_js_files)',
440 'webapp/base/js/base.js',
garykac43a567e2015-05-11 17:48:33441 'webapp/base/js/error.js',
442 'webapp/base/js/identity.js',
garykac9547d1f2015-03-06 19:42:55443 'webapp/base/js/ipc.js',
garykac43a567e2015-05-11 17:48:33444 'webapp/base/js/l10n.js',
445 'webapp/base/js/oauth2.js',
446 'webapp/base/js/oauth2_api.js',
447 'webapp/base/js/oauth2_api_impl.js',
kelvinp74f3b3c2015-07-01 01:46:28448 'webapp/base/js/platform.js',
garykac43a567e2015-05-11 17:48:33449 'webapp/base/js/plugin_settings.js',
kelvinpf2c15c32015-06-25 21:31:29450 'webapp/base/js/telemetry_event_writer.js',
garykac43a567e2015-05-11 17:48:33451 'webapp/base/js/typecheck.js',
452 'webapp/base/js/xhr.js',
kelvinpf2c15c32015-06-25 21:31:29453 'webapp/base/js/xhr_event_writer.js',
garykac9547d1f2015-03-06 19:42:55454 'webapp/crd/js/host_installer.js',
455 'webapp/crd/js/host_session.js',
garykac9547d1f2015-03-06 19:42:55456 'webapp/crd/js/it2me_host_facade.js',
garykac9547d1f2015-03-06 19:42:55457 ],
458
459 #
460 # Webapp wcs_sandbox.html generation files.
461 #
462
463 'remoting_webapp_template_wcs_sandbox':
464 '<(DEPTH)/remoting/webapp/base/html/template_wcs_sandbox.html',
465
466 # These JS files are specific to the WCS sandbox page and are not part of
467 # the main JS files.
468 'remoting_webapp_wcs_sandbox_html_js_files': [
469 'webapp/crd/js/wcs.js',
470 'webapp/crd/js/wcs_loader.js',
471 'webapp/crd/js/wcs_sandbox_content.js',
472 'webapp/crd/js/xhr_proxy.js',
473 ],
474
475 # All the JavaScript files required by wcs_sandbox.html.
476 'remoting_webapp_wcs_sandbox_html_all_js_files': [
477 '<@(remoting_webapp_wcs_sandbox_html_js_files)',
garykac43a567e2015-05-11 17:48:33478 'webapp/base/js/error.js',
479 'webapp/base/js/plugin_settings.js',
garykac9547d1f2015-03-06 19:42:55480 ],
481
482 #
483 # Webapp message_window.html generation files.
484 #
485
486 'remoting_webapp_template_message_window':
487 '<(DEPTH)/remoting/webapp/base/html/template_message_window.html',
488
489 # These JS files are specific to the message window page and are not part of
490 # the main JS files.
491 'remoting_webapp_message_window_html_js_files': [
492 'webapp/base/js/message_window.js',
493 ],
494
495 # All the JavaScript files required by message_window.html.
496 'remoting_webapp_message_window_html_all_js_files': [
497 '<@(remoting_webapp_message_window_html_js_files)',
498 'webapp/base/js/base.js',
499 ],
500
501 #
jamiewalch6275de52015-06-17 23:25:34502 # All the JavaScript files required by credits.html
503 #
jamiewalch6275de52015-06-17 23:25:34504 'remoting_webapp_credits_html_all_js_files': [
lambroslambroud5d8d0d2015-06-20 01:10:41505 'webapp/base/js/credits_js.js',
jamiewalch6275de52015-06-17 23:25:34506 ],
507
508 #
garykac9547d1f2015-03-06 19:42:55509 # Complete webapp JS and resource files.
510 #
511
512 # All the JavaScript files that are shared by webapps.
513 'remoting_webapp_shared_js_files': [
514 '<@(remoting_webapp_shared_main_html_js_files)',
515 '<@(remoting_webapp_background_html_js_files)',
516 '<@(remoting_webapp_message_window_html_js_files)',
517 '<@(remoting_webapp_wcs_sandbox_html_js_files)',
518 # JS files referenced in manifest.json.
519 '<@(remoting_webapp_js_auth_v1_files)',
520 ],
521
522 # All the JavaScript files required by DesktopRemoting.
523 'remoting_webapp_crd_js_files': [
524 '<@(remoting_webapp_shared_js_files)',
525 '<@(remoting_webapp_crd_main_html_all_js_files)',
jamiewalch6275de52015-06-17 23:25:34526 '<@(remoting_webapp_credits_html_all_js_files)',
kelvinp08d28522015-10-01 19:16:15527 '<@(remoting_webapp_public_session_html_all_js_files)',
garykac9547d1f2015-03-06 19:42:55528 ],
529
530 'remoting_webapp_info_files': [
531 'resources/chromoting16.webp',
532 'resources/chromoting48.webp',
533 'resources/chromoting128.webp',
534 ],
535
536 # All the resource files required by DesktopRemoting.
537 'remoting_webapp_resource_files': [
538 'resources/disclosure_arrow_down.webp',
539 'resources/disclosure_arrow_right.webp',
540 'resources/drag.webp',
541 'resources/host_setup_instructions.webp',
542 'resources/icon_close.webp',
543 'resources/icon_cross.webp',
544 'resources/icon_disconnect.webp',
545 'resources/icon_fullscreen.webp',
garykac9547d1f2015-03-06 19:42:55546 'resources/icon_host.webp',
547 'resources/icon_maximize_restore.webp',
548 'resources/icon_minimize.webp',
549 'resources/icon_options.webp',
550 'resources/icon_pencil.webp',
551 'resources/icon_warning.webp',
552 'resources/infographic_my_computers.webp',
553 'resources/infographic_remote_assistance.webp',
554 'resources/plus.webp',
555 'resources/reload.webp',
556 'resources/tick.webp',
557 'webapp/base/html/connection_stats.css',
lambroslambroud5d8d0d2015-06-20 01:10:41558 'webapp/base/html/credits_css.css',
garykac9547d1f2015-03-06 19:42:55559 'webapp/base/html/main.css',
560 'webapp/base/html/message_window.css',
561 'webapp/base/resources/open_sans.css',
562 'webapp/base/resources/open_sans.woff',
563 'webapp/base/resources/spinner.gif',
564 'webapp/crd/html/butter_bar.css',
jamiewalchca9ccb82015-06-02 01:12:14565 'webapp/crd/html/crd_main.css',
garykac9547d1f2015-03-06 19:42:55566 'webapp/crd/html/toolbar.css',
567 'webapp/crd/html/menu_button.css',
kelvinp08d28522015-10-01 19:16:15568 'webapp/crd/html/public_session.css',
garykac9547d1f2015-03-06 19:42:55569 'webapp/crd/html/window_frame.css',
570 'webapp/crd/resources/scale-to-fit.webp',
571 ],
572
573 'remoting_webapp_crd_files': [
574 '<@(remoting_webapp_info_files)',
575 '<@(remoting_webapp_crd_js_files)',
576 '<@(remoting_webapp_resource_files)',
577 ],
578
garykac9ab9df492015-01-27 16:21:01579 # Files that contain localizable strings.
580 'desktop_remoting_webapp_localizable_files': [
581 'webapp/crd/manifest.json.jinja2',
garykac9ab9df492015-01-27 16:21:01582 '<(remoting_webapp_template_background)',
garykac9547d1f2015-03-06 19:42:55583 '<(remoting_webapp_template_main)',
584 '<(remoting_webapp_template_message_window)',
585 '<(remoting_webapp_template_wcs_sandbox)',
garykac9ab9df492015-01-27 16:21:01586 '<@(remoting_webapp_template_files)',
587 '<@(remoting_webapp_crd_js_files)',
588 ],
589
[email protected]af2d58182014-01-25 01:21:42590 },
591}