blob: 361b8ad56d8c66243293a51c3d0f6085c64094da [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
5{
6 'variables': {
7 'remoting_webapp_info_files': [
8 'resources/chromoting16.webp',
9 'resources/chromoting48.webp',
10 'resources/chromoting128.webp',
[email protected]af2d58182014-01-25 01:21:4211 ],
12
[email protected]cbc8bb02014-01-28 18:01:5313 # Jscompile proto files.
14 # These provide type information for jscompile.
15 'remoting_webapp_js_proto_files': [
16 'webapp/js_proto/chrome_proto.js',
garykac818c8012015-03-02 18:37:4717 'webapp/js_proto/chrome_cast_proto.js',
18 'webapp/js_proto/chrome_event_proto.js',
[email protected]cbc8bb02014-01-28 18:01:5319 'webapp/js_proto/dom_proto.js',
20 'webapp/js_proto/remoting_proto.js',
21 ],
22
garykacb70d4632015-02-19 02:58:5223 #
garykac818c8012015-03-02 18:37:4724 # Webapp browsertest JavaScript files.
garykacb70d4632015-02-19 02:58:5225 #
26
garykacb70d4632015-02-19 02:58:5227 # Browser test files.
28 'remoting_webapp_browsertest_js_files': [
29 'webapp/browser_test/browser_test.js',
30 'webapp/browser_test/bump_scroll_browser_test.js',
31 'webapp/browser_test/cancel_pin_browser_test.js',
32 'webapp/browser_test/invalid_pin_browser_test.js',
33 'webapp/browser_test/it2me_browser_test.js',
garykacb70d4632015-02-19 02:58:5234 'webapp/browser_test/scrollbar_browser_test.js',
35 'webapp/browser_test/timeout_waiter.js',
36 'webapp/browser_test/unauthenticated_browser_test.js',
37 'webapp/browser_test/update_pin_browser_test.js',
38 ],
garykac818c8012015-03-02 18:37:4739 # Browser test files.
40 'remoting_webapp_browsertest_js_mock_files': [
41 'webapp/browser_test/mock_client_plugin.js',
42 'webapp/browser_test/mock_host_list_api.js',
43 'webapp/browser_test/mock_identity.js',
44 'webapp/browser_test/mock_oauth2_api.js',
45 'webapp/browser_test/mock_session_connector.js',
46 'webapp/unittests/mock_signal_strategy.js',
47 ],
48 'remoting_webapp_browsertest_js_proto_files': [
49 'webapp/js_proto/sinon_proto.js',
50 'webapp/js_proto/test_proto.js',
51 '<@(remoting_webapp_js_proto_files)',
52 ],
garykacb70d4632015-02-19 02:58:5253 'remoting_webapp_browsertest_all_js_files': [
54 '<@(remoting_webapp_browsertest_js_files)',
garykac818c8012015-03-02 18:37:4755 '<@(remoting_webapp_browsertest_js_mock_files)',
garykacb70d4632015-02-19 02:58:5256 ],
57
garykac818c8012015-03-02 18:37:4758 #
59 # Webapp unittest JavaScript files.
60 #
61
garykacb70d4632015-02-19 02:58:5262 # These product files are excluded from our JavaScript unittest
63 'remoting_webapp_unittest_exclude_js_files': [
64 # background.js is where the onLoad handler is defined, which
65 # makes it the entry point of the background page.
66 'webapp/crd/js/background.js',
67 ],
68 # The unit test cases for the webapp
69 'remoting_webapp_unittest_js_files': [
garykacb70d4632015-02-19 02:58:5270 'webapp/unittests/apps_v2_migration_unittest.js',
71 'webapp/unittests/base_unittest.js',
kelvinp1e259c472015-02-24 01:03:0472 'webapp/unittests/desktop_viewport_unittest.js',
garykacb70d4632015-02-19 02:58:5273 'webapp/unittests/dns_blackhole_checker_unittest.js',
74 'webapp/unittests/event_hook_unittest.js',
75 'webapp/unittests/fallback_signal_strategy_unittest.js',
kelvinpf95677a2015-03-04 08:57:5176 'webapp/unittests/host_table_entry_unittest.js',
garykacb70d4632015-02-19 02:58:5277 'webapp/unittests/ipc_unittest.js',
garykacb70d4632015-02-19 02:58:5278 'webapp/unittests/l10n_unittest.js',
79 'webapp/unittests/menu_button_unittest.js',
jrwb6a2d042015-02-26 00:04:0280 'webapp/unittests/xhr_unittest.js',
garykacb70d4632015-02-19 02:58:5281 'webapp/unittests/xmpp_connection_unittest.js',
82 'webapp/unittests/xmpp_login_handler_unittest.js',
83 'webapp/unittests/xmpp_stream_parser_unittest.js',
84 ],
garykac818c8012015-03-02 18:37:4785 'remoting_webapp_unittest_js_mock_files': [
86 # Some proto files can be repurposed as simple mocks for the unittests.
87 # Note that some defs in chrome_proto are overwritten by chrome_mocks.
88 'webapp/js_proto/chrome_proto.js',
89 'webapp/unittests/chrome_mocks.js',
90 'webapp/unittests/mock_signal_strategy.js',
91 'webapp/unittests/sinon_helpers.js',
92 'webapp/unittests/test_start.js',
93 ],
94 # Prototypes for objects that are not mocked.
95 'remoting_webapp_unittest_js_proto_files': [
96 'webapp/js_proto/chrome_cast_proto.js',
97 'webapp/js_proto/dom_proto.js',
98 'webapp/js_proto/remoting_proto.js',
99 'webapp/js_proto/qunit_proto.js',
100 'webapp/js_proto/sinon_proto.js',
101 'webapp/js_proto/sinon_stub_proto.js',
102 ],
garykacb70d4632015-02-19 02:58:52103 'remoting_webapp_unittest_all_js_files': [
104 '<@(remoting_webapp_unittest_js_files)',
garykac818c8012015-03-02 18:37:47105 '<@(remoting_webapp_unittest_js_mock_files)',
garykacb70d4632015-02-19 02:58:52106 ],
garykac818c8012015-03-02 18:37:47107 # All the files needed to run the unittests.
garykacb70d4632015-02-19 02:58:52108 'remoting_webapp_unittest_all_files': [
109 'webapp/crd/html/menu_button.css',
110 '<@(remoting_webapp_unittest_all_js_files)',
111 ],
112 'remoting_webapp_unittest_template_main':
113 'webapp/crd/html/template_unittest.html',
114
115 #
116 # Webapp JavaScript file groups.
117 #
118
[email protected]cb896cc2014-02-20 00:35:31119 # Auth (apps v1) JavaScript files.
120 # These files aren't included directly from main.html. They are
121 # referenced from the manifest.json file (appsv1 only).
122 'remoting_webapp_js_auth_v1_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07123 'webapp/crd/js/cs_third_party_auth_trampoline.js', # client to host
124 'webapp/crd/js/cs_oauth2_trampoline.js', # Google account
[email protected]cb896cc2014-02-20 00:35:31125 ],
[email protected]af2d58182014-01-25 01:21:42126 # Auth (client to host) JavaScript files.
127 'remoting_webapp_js_auth_client2host_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07128 'webapp/crd/js/third_party_host_permissions.js',
129 'webapp/crd/js/third_party_token_fetcher.js',
[email protected]af2d58182014-01-25 01:21:42130 ],
131 # Auth (Google account) JavaScript files.
132 'remoting_webapp_js_auth_google_files': [
Gary Kacmarcik22eb37f12014-11-18 22:35:25133 'webapp/base/js/auth_dialog.js',
garykac7b15ac052014-12-02 03:12:37134 'webapp/base/js/auth_init.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07135 'webapp/crd/js/identity.js',
136 'webapp/crd/js/oauth2.js',
137 'webapp/crd/js/oauth2_api.js',
jamiewalch499b99a2015-01-09 23:19:07138 'webapp/crd/js/oauth2_api_impl.js',
[email protected]af2d58182014-01-25 01:21:42139 ],
garykacb70d4632015-02-19 02:58:52140 # Cast extension handler JavaScript files.
141 'remoting_webapp_js_cast_extension_files': [
142 'webapp/crd/js/cast_extension_handler.js',
143 ],
[email protected]fd1468352014-02-06 10:38:47144 # Client JavaScript files.
[email protected]af2d58182014-01-25 01:21:42145 'remoting_webapp_js_client_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07146 'webapp/crd/js/client_plugin.js',
147 'webapp/crd/js/client_plugin_impl.js',
kelvinp87368c72015-02-20 00:17:42148 'webapp/crd/js/client_plugin_host_desktop_impl.js',
[email protected]af2d58182014-01-25 01:21:42149 # TODO(garykac) For client_screen:
150 # * Split out pin/access code stuff into separate file.
151 # * Move client logic into session_connector
Gary Kacmarcik6110f4b2014-10-23 00:20:07152 'webapp/crd/js/client_screen.js',
153 'webapp/crd/js/client_session.js',
154 'webapp/crd/js/clipboard.js',
kelvinpa656e722015-03-02 21:40:47155 'webapp/crd/js/credentials_provider.js',
garykacf6377ee2015-02-13 03:08:04156 'webapp/crd/js/desktop_connected_view.js',
kelvinp87368c72015-02-20 00:17:42157 'webapp/crd/js/host_desktop.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07158 'webapp/crd/js/session_connector.js',
159 'webapp/crd/js/session_connector_impl.js',
160 'webapp/crd/js/smart_reconnector.js',
161 'webapp/crd/js/video_frame_recorder.js',
[email protected]af2d58182014-01-25 01:21:42162 ],
163 # Remoting core JavaScript files.
164 'remoting_webapp_js_core_files': [
garykac12564e82015-02-03 21:45:20165 'webapp/base/js/app_capabilities.js',
garykacccb1b862014-12-06 03:46:44166 'webapp/base/js/application.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07167 'webapp/base/js/base.js',
kelvinp6f290c22015-01-28 23:29:29168 'webapp/base/js/ipc.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07169 'webapp/base/js/platform.js',
kelvinpef56d872015-01-22 03:13:36170 'webapp/crd/js/apps_v2_migration.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07171 'webapp/crd/js/error.js',
172 'webapp/crd/js/event_handlers.js',
173 'webapp/crd/js/plugin_settings.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07174 'webapp/crd/js/remoting.js',
175 'webapp/crd/js/typecheck.js',
176 'webapp/crd/js/xhr.js',
[email protected]af2d58182014-01-25 01:21:42177 ],
garykacb70d4632015-02-19 02:58:52178 # Gnubby authentication JavaScript files.
179 'remoting_webapp_js_gnubby_auth_files': [
180 'webapp/crd/js/gnubby_auth_handler.js',
181 ],
[email protected]af2d58182014-01-25 01:21:42182 # Host JavaScript files.
[email protected]af2d58182014-01-25 01:21:42183 'remoting_webapp_js_host_files': [
garykac846c7c72014-12-19 23:36:14184 'webapp/crd/js/host.js',
185 'webapp/crd/js/host_settings.js',
186 ],
187 # Files for controlling the local machine as a host.
188 # Includes both it2me and me2me files.
189 'remoting_webapp_js_host_control_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07190 'webapp/crd/js/host_controller.js',
191 'webapp/crd/js/host_daemon_facade.js',
garykac846c7c72014-12-19 23:36:14192 'webapp/crd/js/host_screen.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07193 'webapp/crd/js/host_session.js',
garykac846c7c72014-12-19 23:36:14194 'webapp/crd/js/host_setup_dialog.js',
195 'webapp/crd/js/host_install_dialog.js',
196 'webapp/crd/js/host_installer.js',
197 'webapp/crd/js/it2me_host_facade.js',
198 'webapp/crd/js/paired_client_manager.js',
199 ],
200 # Files for displaying (in the client) info about available hosts.
201 'remoting_webapp_js_host_display_files': [
202 'webapp/crd/js/host_list.js',
jamiewalchb8749522015-01-05 20:00:49203 'webapp/crd/js/host_list_api.js',
jamiewalch499b99a2015-01-09 23:19:07204 'webapp/crd/js/host_list_api_impl.js',
garykac846c7c72014-12-19 23:36:14205 'webapp/crd/js/host_table_entry.js',
kelvinpf95677a2015-03-04 08:57:51206 'webapp/crd/js/local_host_section.js',
[email protected]af2d58182014-01-25 01:21:42207 ],
208 # Logging and stats JavaScript files.
209 'remoting_webapp_js_logging_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07210 'webapp/crd/js/format_iq.js',
211 'webapp/crd/js/log_to_server.js',
212 'webapp/crd/js/server_log_entry.js',
213 'webapp/crd/js/stats_accumulator.js',
[email protected]af2d58182014-01-25 01:21:42214 ],
garykacb70d4632015-02-19 02:58:52215 # Remoting signaling files.
216 'remoting_webapp_js_signaling_files': [
217 'webapp/crd/js/dns_blackhole_checker.js',
218 'webapp/crd/js/fallback_signal_strategy.js',
219 'webapp/crd/js/signal_strategy.js',
220 'webapp/crd/js/wcs_adapter.js',
221 'webapp/crd/js/wcs_sandbox_container.js',
222 'webapp/crd/js/xmpp_connection.js',
223 'webapp/crd/js/xmpp_login_handler.js',
224 'webapp/crd/js/xmpp_stream_parser.js',
225 ],
[email protected]af2d58182014-01-25 01:21:42226 # UI JavaScript files.
227 'remoting_webapp_js_ui_files': [
garykac701a99c2014-11-17 18:10:52228 'webapp/base/js/window_shape.js',
kelvinp1e259c472015-02-24 01:03:04229 'webapp/crd/js/bump_scroller.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07230 'webapp/crd/js/butter_bar.js',
231 'webapp/crd/js/connection_stats.js',
kelvinp1e259c472015-02-24 01:03:04232 'webapp/crd/js/desktop_viewport.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07233 'webapp/crd/js/feedback.js',
234 'webapp/crd/js/fullscreen.js',
235 'webapp/crd/js/fullscreen_v1.js',
236 'webapp/crd/js/fullscreen_v2.js',
237 'webapp/crd/js/l10n.js',
238 'webapp/crd/js/menu_button.js',
239 'webapp/crd/js/options_menu.js',
240 'webapp/crd/js/ui_mode.js',
241 'webapp/crd/js/toolbar.js',
242 'webapp/crd/js/window_frame.js',
[email protected]af2d58182014-01-25 01:21:42243 ],
[email protected]cb896cc2014-02-20 00:35:31244 # Remoting WCS sandbox JavaScript files.
245 'remoting_webapp_js_wcs_sandbox_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07246 'webapp/crd/js/wcs.js',
247 'webapp/crd/js/wcs_loader.js',
248 'webapp/crd/js/wcs_sandbox_content.js',
249 'webapp/crd/js/xhr_proxy.js',
[email protected]af2d58182014-01-25 01:21:42250 ],
[email protected]78485562014-06-23 21:12:45251
garykac7b15ac052014-12-02 03:12:37252 # The shared JavaScript files required by main.html.
253 'remoting_webapp_shared_main_html_js_files': [
[email protected]f8881a72014-04-25 08:55:18254 # Include the core files first as it is required by the other files.
255 # Otherwise, Jscompile will complain.
256 '<@(remoting_webapp_js_core_files)',
[email protected]af2d58182014-01-25 01:21:42257 '<@(remoting_webapp_js_auth_client2host_files)',
258 '<@(remoting_webapp_js_auth_google_files)',
259 '<@(remoting_webapp_js_client_files)',
[email protected]de101e12014-02-27 04:12:08260 '<@(remoting_webapp_js_gnubby_auth_files)',
[email protected]2f4e73e2014-08-16 08:35:47261 '<@(remoting_webapp_js_cast_extension_files)',
[email protected]af2d58182014-01-25 01:21:42262 '<@(remoting_webapp_js_host_files)',
garykac846c7c72014-12-19 23:36:14263 '<@(remoting_webapp_js_host_control_files)',
264 '<@(remoting_webapp_js_host_display_files)',
[email protected]af2d58182014-01-25 01:21:42265 '<@(remoting_webapp_js_logging_files)',
266 '<@(remoting_webapp_js_ui_files)',
sergeyu30975b82014-09-04 06:37:18267 '<@(remoting_webapp_js_signaling_files)',
garykacb70d4632015-02-19 02:58:52268 # Uncomment this line to include browser test files in the web app
[email protected]4eacd672014-05-09 06:58:23269 # to expedite debugging or local development.
garykacb70d4632015-02-19 02:58:52270 #'<@(remoting_webapp_browsertest_all_js_files)',
[email protected]f34acc692014-08-12 22:47:14271 ],
272
garykac7b15ac052014-12-02 03:12:37273 # The CRD-specific JavaScript files required by main.html.
274 'remoting_webapp_crd_main_html_js_files': [
garykac846c7c72014-12-19 23:36:14275 'webapp/crd/js/crd_connect.js',
276 'webapp/crd/js/crd_event_handlers.js',
garykac7b15ac052014-12-02 03:12:37277 'webapp/crd/js/crd_main.js',
garykacccb1b862014-12-06 03:46:44278 'webapp/crd/js/desktop_remoting.js',
garykac7b15ac052014-12-02 03:12:37279 ],
280
[email protected]16f0bac2014-08-21 05:24:48281 # The JavaScript files that are used in the background page.
[email protected]f34acc692014-08-12 22:47:14282 'remoting_webapp_background_js_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07283 'webapp/base/js/base.js',
kelvinp6f290c22015-01-28 23:29:29284 'webapp/base/js/ipc.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07285 'webapp/base/js/message_window_helper.js',
286 'webapp/base/js/message_window_manager.js',
kelvinp2589f692015-01-29 22:24:28287 'webapp/crd/js/activation_handler.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07288 'webapp/crd/js/app_launcher.js',
289 'webapp/crd/js/background.js',
290 'webapp/crd/js/client_session.js',
291 'webapp/crd/js/error.js',
292 'webapp/crd/js/host_installer.js',
293 'webapp/crd/js/host_session.js',
kelvinp5e4c4c52015-02-04 22:07:33294 'webapp/crd/js/identity.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07295 'webapp/crd/js/it2me_host_facade.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07296 'webapp/crd/js/l10n.js',
jamiewalch6d20d9e2014-10-30 22:33:12297 'webapp/crd/js/oauth2.js',
298 'webapp/crd/js/oauth2_api.js',
kelvinpe24343e2015-02-03 21:01:54299 'webapp/crd/js/oauth2_api_impl.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07300 'webapp/crd/js/plugin_settings.js',
301 'webapp/crd/js/typecheck.js',
jamiewalch6d20d9e2014-10-30 22:33:12302 'webapp/crd/js/xhr.js',
[email protected]cb896cc2014-02-20 00:35:31303 ],
304
305 # The JavaScript files required by wcs_sandbox.html.
306 'remoting_webapp_wcs_sandbox_html_js_files': [
307 '<@(remoting_webapp_js_wcs_sandbox_files)',
Gary Kacmarcik6110f4b2014-10-23 00:20:07308 'webapp/crd/js/error.js',
309 'webapp/crd/js/plugin_settings.js',
[email protected]cb896cc2014-02-20 00:35:31310 ],
311
garykac7b15ac052014-12-02 03:12:37312 # All the JavaScript files that are shared by webapps.
313 'remoting_webapp_shared_js_files': [
[email protected]cb896cc2014-02-20 00:35:31314 # JS files for main.html.
garykac7b15ac052014-12-02 03:12:37315 '<@(remoting_webapp_shared_main_html_js_files)',
[email protected]f34acc692014-08-12 22:47:14316 '<@(remoting_webapp_background_js_files)',
kelvinp8df98f362014-08-25 18:26:19317 # JS files for message_window.html
Gary Kacmarcik6110f4b2014-10-23 00:20:07318 'webapp/base/js/message_window.js',
[email protected]cb896cc2014-02-20 00:35:31319 # JS files for wcs_sandbox.html.
320 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
321 # so that we don't double include error.js and plugin_settings.js.
322 '<@(remoting_webapp_js_wcs_sandbox_files)',
323 # JS files referenced in mainfest.json.
324 '<@(remoting_webapp_js_auth_v1_files)',
[email protected]af2d58182014-01-25 01:21:42325 ],
326
garykac7b15ac052014-12-02 03:12:37327 # All the JavaScript files required by CRD.
328 'remoting_webapp_crd_js_files': [
329 '<@(remoting_webapp_shared_js_files)',
330 '<@(remoting_webapp_crd_main_html_js_files)',
331 ],
332
[email protected]af2d58182014-01-25 01:21:42333 'remoting_webapp_resource_files': [
334 'resources/disclosure_arrow_down.webp',
335 'resources/disclosure_arrow_right.webp',
[email protected]f733f262014-05-14 06:10:16336 'resources/drag.webp',
[email protected]af2d58182014-01-25 01:21:42337 'resources/host_setup_instructions.webp',
[email protected]f733f262014-05-14 06:10:16338 'resources/icon_close.webp',
[email protected]af2d58182014-01-25 01:21:42339 'resources/icon_cross.webp',
[email protected]f733f262014-05-14 06:10:16340 'resources/icon_disconnect.webp',
jamiewalch0bc497a82014-08-26 00:33:45341 'resources/icon_fullscreen.webp',
[email protected]ef16f932014-04-16 09:41:58342 'resources/icon_help.webp',
[email protected]af2d58182014-01-25 01:21:42343 'resources/icon_host.webp',
[email protected]f733f262014-05-14 06:10:16344 'resources/icon_maximize_restore.webp',
345 'resources/icon_minimize.webp',
[email protected]d7f7e2ff2014-07-24 03:05:19346 'resources/icon_options.webp',
[email protected]af2d58182014-01-25 01:21:42347 'resources/icon_pencil.webp',
348 'resources/icon_warning.webp',
349 'resources/infographic_my_computers.webp',
350 'resources/infographic_remote_assistance.webp',
351 'resources/plus.webp',
352 'resources/reload.webp',
353 'resources/tick.webp',
Gary Kacmarcik6110f4b2014-10-23 00:20:07354 'webapp/base/html/connection_stats.css',
Gary Kacmarcik6110f4b2014-10-23 00:20:07355 'webapp/base/html/main.css',
kelvinpe24343e2015-02-03 21:01:54356 'webapp/base/html/message_window.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07357 'webapp/base/html/message_window.css',
358 'webapp/base/resources/open_sans.css',
359 'webapp/base/resources/open_sans.woff',
360 'webapp/base/resources/spinner.gif',
Gary Kacmarcikac6b679f2014-11-13 20:52:17361 'webapp/crd/html/butter_bar.css',
Gary Kacmarcik6110f4b2014-10-23 00:20:07362 'webapp/crd/html/toolbar.css',
363 'webapp/crd/html/menu_button.css',
364 'webapp/crd/html/window_frame.css',
365 'webapp/crd/resources/scale-to-fit.webp',
[email protected]af2d58182014-01-25 01:21:42366 ],
367
garykac7b15ac052014-12-02 03:12:37368 'remoting_webapp_crd_files': [
[email protected]af2d58182014-01-25 01:21:42369 '<@(remoting_webapp_info_files)',
garykac7b15ac052014-12-02 03:12:37370 '<@(remoting_webapp_crd_js_files)',
[email protected]af2d58182014-01-25 01:21:42371 '<@(remoting_webapp_resource_files)',
372 ],
[email protected]cb896cc2014-02-20 00:35:31373
374 # These template files are used to construct the webapp html files.
375 'remoting_webapp_template_main':
garykacc24f9022015-01-17 00:22:35376 '<(DEPTH)/remoting/webapp/crd/html/template_main.html',
[email protected]cb896cc2014-02-20 00:35:31377
378 'remoting_webapp_template_wcs_sandbox':
garykacc24f9022015-01-17 00:22:35379 '<(DEPTH)/remoting/webapp/base/html/template_wcs_sandbox.html',
[email protected]cb896cc2014-02-20 00:35:31380
[email protected]f34acc692014-08-12 22:47:14381 'remoting_webapp_template_background':
garykacc24f9022015-01-17 00:22:35382 '<(DEPTH)/remoting/webapp/crd/html/template_background.html',
[email protected]f34acc692014-08-12 22:47:14383
[email protected]cb896cc2014-02-20 00:35:31384 'remoting_webapp_template_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07385 'webapp/base/html/client_plugin.html',
386 'webapp/base/html/dialog_auth.html',
Gary Kacmarcikac6b679f2014-11-13 20:52:17387 'webapp/crd/html/butter_bar.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07388 'webapp/crd/html/dialog_client_connect_failed.html',
389 'webapp/crd/html/dialog_client_connecting.html',
390 'webapp/crd/html/dialog_client_host_needs_upgrade.html',
391 'webapp/crd/html/dialog_client_pin_prompt.html',
392 'webapp/crd/html/dialog_client_session_finished.html',
393 'webapp/crd/html/dialog_client_third_party_auth.html',
394 'webapp/crd/html/dialog_client_unconnected.html',
395 'webapp/crd/html/dialog_confirm_host_delete.html',
396 'webapp/crd/html/dialog_connection_history.html',
397 'webapp/crd/html/dialog_host.html',
398 'webapp/crd/html/dialog_host_install.html',
399 'webapp/crd/html/dialog_host_setup.html',
400 'webapp/crd/html/dialog_manage_pairings.html',
401 'webapp/crd/html/dialog_token_refresh_failed.html',
402 'webapp/crd/html/toolbar.html',
403 'webapp/crd/html/ui_header.html',
404 'webapp/crd/html/ui_it2me.html',
405 'webapp/crd/html/ui_me2me.html',
406 'webapp/crd/html/window_frame.html',
[email protected]cb896cc2014-02-20 00:35:31407 ],
408
garykac9ab9df492015-01-27 16:21:01409 # Files that contain localizable strings.
410 'desktop_remoting_webapp_localizable_files': [
411 'webapp/crd/manifest.json.jinja2',
412 '<(remoting_webapp_template_main)',
413 '<(remoting_webapp_template_wcs_sandbox)',
414 '<(remoting_webapp_template_background)',
415 '<@(remoting_webapp_template_files)',
416 '<@(remoting_webapp_crd_js_files)',
417 ],
418
[email protected]af2d58182014-01-25 01:21:42419 },
420}