blob: ef8ce076b0e3e9a2cb266d370f866e4c04985d6c [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': [
jrw7829d552015-03-14 00:16:3883 # TODO(jrw): Move spy_promise to base.
84 'webapp/unittests/spy_promise.js',
85 'webapp/unittests/spy_promise_unittest.js',
wez0f929882015-03-12 16:19:1986 'webapp/base/js/base_unittest.js',
87 'webapp/base/js/base_event_hook_unittest.js',
kelvinp718f4e82015-03-20 23:19:4788 'webapp/base/js/base_inherits_unittest.js',
garykac43a567e2015-05-11 17:48:3389 'webapp/base/js/client_session_unittest.js',
90 'webapp/base/js/client_session_factory_unittest.js',
91 'webapp/base/js/dns_blackhole_checker_unittest.js',
92 'webapp/base/js/error_unittest.js',
93 'webapp/base/js/fallback_signal_strategy_unittest.js',
94 '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',
kelvinpe989257af2015-06-06 02:56:4297 'webapp/base/js/platform_unittest.js',
kelvinp25f89e582015-04-08 01:20:5098 'webapp/base/js/protocol_extension_manager_unittest.js',
garykac43a567e2015-05-11 17:48:3399 'webapp/base/js/typecheck_unittest.js',
garykac828a33d2015-04-27 16:23:50100 'webapp/base/js/viewport_unittest.js',
kelvinp41b04f32015-05-19 18:51:32101 'webapp/base/js/window_shape_unittest.js',
weitaosu574f3042015-06-23 22:55:56102 'webapp/base/js/window_message_dispatcher_unittest.js',
kelvinpe0e0c0d2015-06-18 17:57:16103 'webapp/base/js/xhr_event_writer_unittest.js',
garykac43a567e2015-05-11 17:48:33104 'webapp/base/js/xhr_unittest.js',
105 'webapp/base/js/xmpp_connection_unittest.js',
106 'webapp/base/js/xmpp_login_handler_unittest.js',
107 'webapp/base/js/xmpp_stream_parser_unittest.js',
wez0f929882015-03-12 16:19:19108 'webapp/crd/js/apps_v2_migration_unittest.js',
jrw12e3cb32015-03-31 00:58:14109 'webapp/crd/js/gcd_client_unittest.js',
jrw58e816f02015-04-07 19:59:12110 'webapp/crd/js/gcd_client_with_mock_xhr_unittest.js',
jrwf326e5a2015-04-09 20:20:49111 'webapp/crd/js/host_controller_unittest.js',
jrw133be792015-04-08 01:12:28112 'webapp/crd/js/host_daemon_facade_unittest.js',
wez0f929882015-03-12 16:19:19113 'webapp/crd/js/host_table_entry_unittest.js',
jrw5ffa27c2015-06-10 22:56:24114 'webapp/crd/js/legacy_host_list_api_unittest.js',
wez0f929882015-03-12 16:19:19115 'webapp/crd/js/menu_button_unittest.js',
jrw58e816f02015-04-07 19:59:12116 'webapp/crd/js/mock_xhr_unittest.js',
garykacb70d4632015-02-19 02:58:52117 ],
wez0f929882015-03-12 16:19:19118 'remoting_webapp_unittests_js_mock_files': [
kelvinp2c5de342015-04-20 18:52:01119 'webapp/crd/js/mock_client_plugin.js',
jrwf326e5a2015-04-09 20:20:49120 'webapp/crd/js/mock_host_daemon_facade.js',
jrw300af592015-04-18 02:10:28121 'webapp/crd/js/mock_host_list_api.js',
122 'webapp/crd/js/mock_identity.js',
wez0f929882015-03-12 16:19:19123 'webapp/crd/js/mock_signal_strategy.js',
wez0f929882015-03-12 16:19:19124 'webapp/js_proto/chrome_mocks.js',
garykac818c8012015-03-02 18:37:47125 'webapp/unittests/sinon_helpers.js',
jrw58e816f02015-04-07 19:59:12126 'webapp/crd/js/mock_xhr.js',
garykac818c8012015-03-02 18:37:47127 ],
128 # Prototypes for objects that are not mocked.
wez0f929882015-03-12 16:19:19129 'remoting_webapp_unittests_js_proto_files': [
garykac818c8012015-03-02 18:37:47130 'webapp/js_proto/chrome_cast_proto.js',
kelvinp1a8d5b22015-05-26 21:32:52131 'webapp/js_proto/chrome_proto.js',
garykac818c8012015-03-02 18:37:47132 'webapp/js_proto/dom_proto.js',
133 'webapp/js_proto/remoting_proto.js',
garykac818c8012015-03-02 18:37:47134 'webapp/js_proto/sinon_proto.js',
garykac818c8012015-03-02 18:37:47135 ],
wez0f929882015-03-12 16:19:19136 'remoting_webapp_unittests_all_js_files': [
137 '<@(remoting_webapp_unittests_js_files)',
138 '<@(remoting_webapp_unittests_js_mock_files)',
kelvinp1a8d5b22015-05-26 21:32:52139 'webapp/unittests/qunit_callbacks.js',
garykacb70d4632015-02-19 02:58:52140 ],
garykac818c8012015-03-02 18:37:47141 # All the files needed to run the unittests.
wez0f929882015-03-12 16:19:19142 'remoting_webapp_unittests_all_files': [
garykacb70d4632015-02-19 02:58:52143 'webapp/crd/html/menu_button.css',
wez0f929882015-03-12 16:19:19144 '<@(remoting_webapp_unittests_all_js_files)',
garykacb70d4632015-02-19 02:58:52145 ],
wez0f929882015-03-12 16:19:19146 'remoting_webapp_unittests_template_main':
147 'webapp/crd/html/template_unittests.html',
garykacb70d4632015-02-19 02:58:52148
149 #
garykac43a567e2015-05-11 17:48:33150 # Shared webapp JavaScript file groups.
151 #
152
153 # Auth (Google account) JavaScript files.
154 'remoting_webapp_shared_js_auth_google_files': [
155 'webapp/base/js/auth_init.js',
156 'webapp/base/js/identity.js',
157 'webapp/base/js/oauth2.js',
158 'webapp/base/js/oauth2_api.js',
159 'webapp/base/js/oauth2_api_impl.js',
160 ],
161 # Client JavaScript files.
162 'remoting_webapp_shared_js_client_files': [
163 'webapp/base/js/activity.js',
164 'webapp/base/js/client_plugin.js',
165 'webapp/base/js/client_plugin_host_desktop_impl.js',
166 'webapp/base/js/client_plugin_impl.js',
167 'webapp/base/js/client_session.js',
168 'webapp/base/js/client_session_factory.js',
169 'webapp/base/js/clipboard.js',
170 'webapp/base/js/connected_view.js',
171 'webapp/base/js/connection_info.js',
172 'webapp/base/js/credentials_provider.js',
173 'webapp/base/js/host_desktop.js',
174 'webapp/base/js/smart_reconnector.js',
175 ],
176 # Remoting core JavaScript files.
177 'remoting_webapp_shared_js_core_files': [
phoglund62355532015-06-17 08:44:33178 'webapp/base/js/app_capabilities.js',
garykac43a567e2015-05-11 17:48:33179 'webapp/base/js/application.js',
180 'webapp/base/js/base.js',
181 'webapp/base/js/ipc.js',
182 'webapp/base/js/modal_dialogs.js',
183 'webapp/base/js/platform.js',
184 'webapp/base/js/protocol_extension_manager.js',
185 'webapp/base/js/protocol_extension.js',
186 'webapp/base/js/error.js',
187 'webapp/base/js/plugin_settings.js',
kelvinp2a8128f2015-05-27 00:54:01188 'webapp/base/js/suspend_detector.js',
garykac43a567e2015-05-11 17:48:33189 'webapp/base/js/typecheck.js',
weitaosu574f3042015-06-23 22:55:56190 'webapp/base/js/window_message_dispatcher.js',
kelvinpe0e0c0d2015-06-18 17:57:16191 'webapp/base/js/xhr_event_writer.js',
garykac43a567e2015-05-11 17:48:33192 'webapp/base/js/xhr.js',
193 ],
194 # Host JavaScript files.
195 'remoting_webapp_shared_js_host_files': [
196 'webapp/base/js/host.js',
197 'webapp/base/js/host_settings.js',
198 ],
199 # Logging and stats JavaScript files.
200 'remoting_webapp_shared_js_logging_files': [
201 'webapp/base/js/format_iq.js',
202 'webapp/base/js/log_to_server.js',
203 'webapp/base/js/server_log_entry.js',
204 'webapp/base/js/stats_accumulator.js',
205 ],
206 # Remoting signaling files.
207 'remoting_webapp_shared_js_signaling_files': [
208 'webapp/base/js/dns_blackhole_checker.js',
209 'webapp/base/js/fallback_signal_strategy.js',
210 'webapp/base/js/signal_strategy.js',
211 'webapp/base/js/tcp_socket.js',
212 'webapp/base/js/wcs_adapter.js',
213 'webapp/base/js/wcs_sandbox_container.js',
214 'webapp/base/js/xmpp_connection.js',
215 'webapp/base/js/xmpp_login_handler.js',
216 'webapp/base/js/xmpp_stream_parser.js',
217 ],
218 # Shared UI JavaScript files.
219 'remoting_webapp_shared_js_ui_files': [
kelvinpc1be5112015-05-27 21:39:25220 'webapp/base/js/connection_dropped_dialog.js',
garykac43a567e2015-05-11 17:48:33221 'webapp/base/js/connection_stats.js',
222 'webapp/base/js/l10n.js',
223 'webapp/base/js/ui_mode.js',
224 'webapp/base/js/viewport.js',
225 'webapp/base/js/window_shape.js',
226 ],
227
228 #
229 # DesktopRemoting webapp JavaScript file groups.
garykacb70d4632015-02-19 02:58:52230 #
231
[email protected]cb896cc2014-02-20 00:35:31232 # Auth (apps v1) JavaScript files.
233 # These files aren't included directly from main.html. They are
234 # referenced from the manifest.json file (appsv1 only).
235 'remoting_webapp_js_auth_v1_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07236 'webapp/crd/js/cs_third_party_auth_trampoline.js', # client to host
237 'webapp/crd/js/cs_oauth2_trampoline.js', # Google account
[email protected]cb896cc2014-02-20 00:35:31238 ],
[email protected]af2d58182014-01-25 01:21:42239 # Auth (client to host) JavaScript files.
240 'remoting_webapp_js_auth_client2host_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07241 'webapp/crd/js/third_party_host_permissions.js',
242 'webapp/crd/js/third_party_token_fetcher.js',
[email protected]af2d58182014-01-25 01:21:42243 ],
garykacb70d4632015-02-19 02:58:52244 # Cast extension handler JavaScript files.
245 'remoting_webapp_js_cast_extension_files': [
246 'webapp/crd/js/cast_extension_handler.js',
247 ],
[email protected]fd1468352014-02-06 10:38:47248 # Client JavaScript files.
[email protected]af2d58182014-01-25 01:21:42249 'remoting_webapp_js_client_files': [
kelvinpef56d872015-01-22 03:13:36250 'webapp/crd/js/apps_v2_migration.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07251 'webapp/crd/js/event_handlers.js',
jrw12e3cb32015-03-31 00:58:14252 'webapp/crd/js/gcd_client.js',
garykac43a567e2015-05-11 17:48:33253 'webapp/crd/js/video_frame_recorder.js',
[email protected]af2d58182014-01-25 01:21:42254 ],
garykacb70d4632015-02-19 02:58:52255 # Gnubby authentication JavaScript files.
256 'remoting_webapp_js_gnubby_auth_files': [
257 'webapp/crd/js/gnubby_auth_handler.js',
258 ],
garykac846c7c72014-12-19 23:36:14259 # Files for controlling the local machine as a host.
260 # Includes both it2me and me2me files.
261 'remoting_webapp_js_host_control_files': [
jamiewalch9ea60d82015-06-10 19:17:56262 'webapp/crd/js/buffered_signal_strategy.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07263 'webapp/crd/js/host_controller.js',
264 'webapp/crd/js/host_daemon_facade.js',
garykac846c7c72014-12-19 23:36:14265 'webapp/crd/js/host_screen.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07266 'webapp/crd/js/host_session.js',
garykac846c7c72014-12-19 23:36:14267 'webapp/crd/js/host_setup_dialog.js',
268 'webapp/crd/js/host_install_dialog.js',
269 'webapp/crd/js/host_installer.js',
270 'webapp/crd/js/it2me_host_facade.js',
271 'webapp/crd/js/paired_client_manager.js',
272 ],
273 # Files for displaying (in the client) info about available hosts.
274 'remoting_webapp_js_host_display_files': [
275 'webapp/crd/js/host_list.js',
jamiewalchb8749522015-01-05 20:00:49276 'webapp/crd/js/host_list_api.js',
garykac846c7c72014-12-19 23:36:14277 'webapp/crd/js/host_table_entry.js',
kelvinpf95677a2015-03-04 08:57:51278 'webapp/crd/js/local_host_section.js',
jrw5ffa27c2015-06-10 22:56:24279
280 # Must come after host_list_api.js because of an issue with
281 # JSCompiler. If an implementation of an interface occurs in a
282 # file processed before the interface itself, the @override tag
283 # doesn't always work correctly.
284 'webapp/crd/js/gcd_host_list_api.js',
285 'webapp/crd/js/legacy_host_list_api.js',
[email protected]af2d58182014-01-25 01:21:42286 ],
garykac5b228c892015-04-28 01:03:07287 # The CRD-specific JavaScript files required by main.html.
288 'remoting_webapp_crd_js_ui_files': [
kelvinp1e259c472015-02-24 01:03:04289 'webapp/crd/js/bump_scroller.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07290 'webapp/crd/js/butter_bar.js',
garykac5b228c892015-04-28 01:03:07291 'webapp/crd/js/crd_auth_dialog.js',
292 'webapp/crd/js/crd_event_handlers.js',
293 'webapp/crd/js/crd_experimental.js',
294 'webapp/crd/js/desktop_connected_view.js',
295 'webapp/crd/js/desktop_remoting.js',
296 'webapp/crd/js/desktop_remoting_activity.js',
kelvinp1e259c472015-02-24 01:03:04297 'webapp/crd/js/desktop_viewport.js',
garykac43a567e2015-05-11 17:48:33298 'webapp/crd/js/feedback.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07299 'webapp/crd/js/fullscreen.js',
300 'webapp/crd/js/fullscreen_v1.js',
301 'webapp/crd/js/fullscreen_v2.js',
garykac5b228c892015-04-28 01:03:07302 'webapp/crd/js/it2me_activity.js',
303 'webapp/crd/js/me2me_activity.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07304 'webapp/crd/js/menu_button.js',
305 'webapp/crd/js/options_menu.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07306 'webapp/crd/js/toolbar.js',
307 'webapp/crd/js/window_frame.js',
[email protected]af2d58182014-01-25 01:21:42308 ],
garykac9547d1f2015-03-06 19:42:55309
310 #
311 # DesktopRemoting main.html generation files.
312 #
313
314 'remoting_webapp_template_main':
315 '<(DEPTH)/remoting/webapp/crd/html/template_main.html',
[email protected]78485562014-06-23 21:12:45316
garykac7b15ac052014-12-02 03:12:37317 # The shared JavaScript files required by main.html.
garykac43a567e2015-05-11 17:48:33318 # These files are shared with the unittest target.
garykac7b15ac052014-12-02 03:12:37319 'remoting_webapp_shared_main_html_js_files': [
[email protected]f8881a72014-04-25 08:55:18320 # Include the core files first as it is required by the other files.
321 # Otherwise, Jscompile will complain.
garykac43a567e2015-05-11 17:48:33322 '<@(remoting_webapp_shared_js_core_files)',
323 '<@(remoting_webapp_shared_js_auth_google_files)',
324 '<@(remoting_webapp_shared_js_client_files)',
325 '<@(remoting_webapp_shared_js_host_files)',
326 '<@(remoting_webapp_shared_js_logging_files)',
327 '<@(remoting_webapp_shared_js_signaling_files)',
328 '<@(remoting_webapp_shared_js_ui_files)',
[email protected]af2d58182014-01-25 01:21:42329 '<@(remoting_webapp_js_auth_client2host_files)',
[email protected]af2d58182014-01-25 01:21:42330 '<@(remoting_webapp_js_client_files)',
[email protected]de101e12014-02-27 04:12:08331 '<@(remoting_webapp_js_gnubby_auth_files)',
[email protected]2f4e73e2014-08-16 08:35:47332 '<@(remoting_webapp_js_cast_extension_files)',
garykac846c7c72014-12-19 23:36:14333 '<@(remoting_webapp_js_host_control_files)',
334 '<@(remoting_webapp_js_host_display_files)',
[email protected]f34acc692014-08-12 22:47:14335 ],
336
garykac5b228c892015-04-28 01:03:07337 # The JS files required by unittest.html.
338 'remoting_webapp_unittest_html_all_js_files': [
339 '<@(remoting_webapp_shared_main_html_js_files)',
340 '<@(remoting_webapp_crd_js_ui_files)',
341 ],
342
garykac7b15ac052014-12-02 03:12:37343 # The CRD-specific JavaScript files required by main.html.
garykac9547d1f2015-03-06 19:42:55344 'remoting_webapp_crd_main_html_all_js_files': [
345 '<@(remoting_webapp_shared_main_html_js_files)',
garykac5b228c892015-04-28 01:03:07346 '<@(remoting_webapp_crd_js_ui_files)',
garykac7b15ac052014-12-02 03:12:37347 'webapp/crd/js/crd_main.js',
348 ],
349
garykac9547d1f2015-03-06 19:42:55350 # These template files are used to construct main.html.
[email protected]cb896cc2014-02-20 00:35:31351 'remoting_webapp_template_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07352 'webapp/base/html/client_plugin.html',
Gary Kacmarcikac6b679f2014-11-13 20:52:17353 'webapp/crd/html/butter_bar.html',
jamiewalchd0bb0df2015-03-24 00:37:32354 'webapp/crd/html/dialog_auth.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07355 'webapp/crd/html/dialog_client_connect_failed.html',
356 'webapp/crd/html/dialog_client_connecting.html',
357 'webapp/crd/html/dialog_client_host_needs_upgrade.html',
358 'webapp/crd/html/dialog_client_pin_prompt.html',
359 'webapp/crd/html/dialog_client_session_finished.html',
360 'webapp/crd/html/dialog_client_third_party_auth.html',
361 'webapp/crd/html/dialog_client_unconnected.html',
362 'webapp/crd/html/dialog_confirm_host_delete.html',
363 'webapp/crd/html/dialog_connection_history.html',
364 'webapp/crd/html/dialog_host.html',
365 'webapp/crd/html/dialog_host_install.html',
366 'webapp/crd/html/dialog_host_setup.html',
367 'webapp/crd/html/dialog_manage_pairings.html',
368 'webapp/crd/html/dialog_token_refresh_failed.html',
369 'webapp/crd/html/toolbar.html',
370 'webapp/crd/html/ui_header.html',
371 'webapp/crd/html/ui_it2me.html',
372 'webapp/crd/html/ui_me2me.html',
373 'webapp/crd/html/window_frame.html',
[email protected]cb896cc2014-02-20 00:35:31374 ],
375
garykac9547d1f2015-03-06 19:42:55376 #
377 # Webapp background.html generation files.
378 #
379
380 'remoting_webapp_template_background':
381 '<(DEPTH)/remoting/webapp/crd/html/template_background.html',
382
383 # These JS files are specific to the background page and are not part of
384 # the main JS files.
385 'remoting_webapp_background_html_js_files': [
386 'webapp/base/js/message_window_helper.js',
387 'webapp/base/js/message_window_manager.js',
388 'webapp/crd/js/activation_handler.js',
389 'webapp/crd/js/app_launcher.js',
390 'webapp/crd/js/background.js',
391 ],
392
393 # All the JavaScript files required by background.html.
394 'remoting_webapp_background_html_all_js_files': [
395 '<@(remoting_webapp_background_html_js_files)',
396 'webapp/base/js/base.js',
garykac43a567e2015-05-11 17:48:33397 'webapp/base/js/error.js',
398 'webapp/base/js/identity.js',
garykac9547d1f2015-03-06 19:42:55399 'webapp/base/js/ipc.js',
garykac43a567e2015-05-11 17:48:33400 'webapp/base/js/l10n.js',
401 'webapp/base/js/oauth2.js',
402 'webapp/base/js/oauth2_api.js',
403 'webapp/base/js/oauth2_api_impl.js',
404 'webapp/base/js/plugin_settings.js',
405 'webapp/base/js/typecheck.js',
406 'webapp/base/js/xhr.js',
garykac9547d1f2015-03-06 19:42:55407 'webapp/crd/js/host_installer.js',
408 'webapp/crd/js/host_session.js',
garykac9547d1f2015-03-06 19:42:55409 'webapp/crd/js/it2me_host_facade.js',
garykac9547d1f2015-03-06 19:42:55410 ],
411
412 #
413 # Webapp wcs_sandbox.html generation files.
414 #
415
416 'remoting_webapp_template_wcs_sandbox':
417 '<(DEPTH)/remoting/webapp/base/html/template_wcs_sandbox.html',
418
419 # These JS files are specific to the WCS sandbox page and are not part of
420 # the main JS files.
421 'remoting_webapp_wcs_sandbox_html_js_files': [
422 'webapp/crd/js/wcs.js',
423 'webapp/crd/js/wcs_loader.js',
424 'webapp/crd/js/wcs_sandbox_content.js',
425 'webapp/crd/js/xhr_proxy.js',
426 ],
427
428 # All the JavaScript files required by wcs_sandbox.html.
429 'remoting_webapp_wcs_sandbox_html_all_js_files': [
430 '<@(remoting_webapp_wcs_sandbox_html_js_files)',
garykac43a567e2015-05-11 17:48:33431 'webapp/base/js/error.js',
432 'webapp/base/js/plugin_settings.js',
garykac9547d1f2015-03-06 19:42:55433 ],
434
435 #
436 # Webapp message_window.html generation files.
437 #
438
439 'remoting_webapp_template_message_window':
440 '<(DEPTH)/remoting/webapp/base/html/template_message_window.html',
441
442 # These JS files are specific to the message window page and are not part of
443 # the main JS files.
444 'remoting_webapp_message_window_html_js_files': [
445 'webapp/base/js/message_window.js',
446 ],
447
448 # All the JavaScript files required by message_window.html.
449 'remoting_webapp_message_window_html_all_js_files': [
450 '<@(remoting_webapp_message_window_html_js_files)',
451 'webapp/base/js/base.js',
452 ],
453
454 #
jamiewalch6275de52015-06-17 23:25:34455 # All the JavaScript files required by credits.html
456 #
457
458 'remoting_webapp_credits_html_all_js_files': [
lambroslambroud5d8d0d2015-06-20 01:10:41459 'webapp/base/js/credits_js.js',
jamiewalch6275de52015-06-17 23:25:34460 ],
461
462 #
garykac9547d1f2015-03-06 19:42:55463 # Complete webapp JS and resource files.
464 #
465
466 # All the JavaScript files that are shared by webapps.
467 'remoting_webapp_shared_js_files': [
468 '<@(remoting_webapp_shared_main_html_js_files)',
469 '<@(remoting_webapp_background_html_js_files)',
470 '<@(remoting_webapp_message_window_html_js_files)',
471 '<@(remoting_webapp_wcs_sandbox_html_js_files)',
472 # JS files referenced in manifest.json.
473 '<@(remoting_webapp_js_auth_v1_files)',
474 ],
475
476 # All the JavaScript files required by DesktopRemoting.
477 'remoting_webapp_crd_js_files': [
478 '<@(remoting_webapp_shared_js_files)',
479 '<@(remoting_webapp_crd_main_html_all_js_files)',
jamiewalch6275de52015-06-17 23:25:34480 '<@(remoting_webapp_credits_html_all_js_files)',
garykac9547d1f2015-03-06 19:42:55481 ],
482
483 'remoting_webapp_info_files': [
484 'resources/chromoting16.webp',
485 'resources/chromoting48.webp',
486 'resources/chromoting128.webp',
487 ],
488
489 # All the resource files required by DesktopRemoting.
490 'remoting_webapp_resource_files': [
491 'resources/disclosure_arrow_down.webp',
492 'resources/disclosure_arrow_right.webp',
493 'resources/drag.webp',
494 'resources/host_setup_instructions.webp',
495 'resources/icon_close.webp',
496 'resources/icon_cross.webp',
497 'resources/icon_disconnect.webp',
498 'resources/icon_fullscreen.webp',
499 'resources/icon_help.webp',
500 'resources/icon_host.webp',
501 'resources/icon_maximize_restore.webp',
502 'resources/icon_minimize.webp',
503 'resources/icon_options.webp',
504 'resources/icon_pencil.webp',
505 'resources/icon_warning.webp',
506 'resources/infographic_my_computers.webp',
507 'resources/infographic_remote_assistance.webp',
508 'resources/plus.webp',
509 'resources/reload.webp',
510 'resources/tick.webp',
511 'webapp/base/html/connection_stats.css',
lambroslambroud5d8d0d2015-06-20 01:10:41512 'webapp/base/html/credits_css.css',
garykac9547d1f2015-03-06 19:42:55513 'webapp/base/html/main.css',
514 'webapp/base/html/message_window.css',
515 'webapp/base/resources/open_sans.css',
516 'webapp/base/resources/open_sans.woff',
517 'webapp/base/resources/spinner.gif',
518 'webapp/crd/html/butter_bar.css',
jamiewalchca9ccb82015-06-02 01:12:14519 'webapp/crd/html/crd_main.css',
garykac9547d1f2015-03-06 19:42:55520 'webapp/crd/html/toolbar.css',
521 'webapp/crd/html/menu_button.css',
522 'webapp/crd/html/window_frame.css',
523 'webapp/crd/resources/scale-to-fit.webp',
524 ],
525
526 'remoting_webapp_crd_files': [
527 '<@(remoting_webapp_info_files)',
528 '<@(remoting_webapp_crd_js_files)',
529 '<@(remoting_webapp_resource_files)',
530 ],
531
garykac9ab9df492015-01-27 16:21:01532 # Files that contain localizable strings.
533 'desktop_remoting_webapp_localizable_files': [
534 'webapp/crd/manifest.json.jinja2',
garykac9ab9df492015-01-27 16:21:01535 '<(remoting_webapp_template_background)',
garykac9547d1f2015-03-06 19:42:55536 '<(remoting_webapp_template_main)',
537 '<(remoting_webapp_template_message_window)',
538 '<(remoting_webapp_template_wcs_sandbox)',
garykac9ab9df492015-01-27 16:21:01539 '<@(remoting_webapp_template_files)',
540 '<@(remoting_webapp_crd_js_files)',
541 ],
542
[email protected]af2d58182014-01-25 01:21:42543 },
544}