blob: e485ccd1f5dec5eb4719a996d2740aeef1f65c18 [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',
[email protected]cbc8bb02014-01-28 18:01:5317 'webapp/js_proto/dom_proto.js',
18 'webapp/js_proto/remoting_proto.js',
garykacb70d4632015-02-19 02:58:5219 'webapp/js_proto/test_proto.js',
[email protected]cbc8bb02014-01-28 18:01:5320 ],
21
garykacb70d4632015-02-19 02:58:5222 #
23 # Webapp browsertest and unittest JavaScript files.
24 #
25
26 # Shared files for tests.
27 'remoting_webapp_test_js_common_files': [
28 'webapp/unittests/mock_signal_strategy.js',
29 ],
30 # Browser test files.
31 'remoting_webapp_browsertest_js_files': [
32 'webapp/browser_test/browser_test.js',
33 'webapp/browser_test/bump_scroll_browser_test.js',
34 'webapp/browser_test/cancel_pin_browser_test.js',
35 'webapp/browser_test/invalid_pin_browser_test.js',
36 'webapp/browser_test/it2me_browser_test.js',
37 'webapp/browser_test/mock_client_plugin.js',
38 'webapp/browser_test/mock_host_list_api.js',
39 'webapp/browser_test/mock_identity.js',
40 'webapp/browser_test/mock_oauth2_api.js',
41 'webapp/browser_test/mock_session_connector.js',
42 'webapp/browser_test/scrollbar_browser_test.js',
43 'webapp/browser_test/timeout_waiter.js',
44 'webapp/browser_test/unauthenticated_browser_test.js',
45 'webapp/browser_test/update_pin_browser_test.js',
46 ],
47 'remoting_webapp_browsertest_all_js_files': [
48 '<@(remoting_webapp_browsertest_js_files)',
49 '<@(remoting_webapp_test_js_common_files)',
50 ],
51
52 # These product files are excluded from our JavaScript unittest
53 'remoting_webapp_unittest_exclude_js_files': [
54 # background.js is where the onLoad handler is defined, which
55 # makes it the entry point of the background page.
56 'webapp/crd/js/background.js',
57 ],
58 # The unit test cases for the webapp
59 'remoting_webapp_unittest_js_files': [
60 'webapp/unittests/chrome_mocks.js',
61 'webapp/js_proto/chrome_proto.js',
62 'webapp/unittests/apps_v2_migration_unittest.js',
63 'webapp/unittests/base_unittest.js',
64 'webapp/unittests/desktop_connected_view_unittest.js',
65 'webapp/unittests/dns_blackhole_checker_unittest.js',
66 'webapp/unittests/event_hook_unittest.js',
67 'webapp/unittests/fallback_signal_strategy_unittest.js',
68 'webapp/unittests/ipc_unittest.js',
69 'webapp/unittests/it2me_helpee_channel_unittest.js',
70 'webapp/unittests/it2me_helper_channel_unittest.js',
71 'webapp/unittests/it2me_service_unittest.js',
72 'webapp/unittests/l10n_unittest.js',
73 'webapp/unittests/menu_button_unittest.js',
74 'webapp/unittests/xmpp_connection_unittest.js',
75 'webapp/unittests/xmpp_login_handler_unittest.js',
76 'webapp/unittests/xmpp_stream_parser_unittest.js',
77 ],
78 'remoting_webapp_unittest_all_js_files': [
79 '<@(remoting_webapp_unittest_js_files)',
80 '<@(remoting_webapp_test_js_common_files)',
81 ],
82 'remoting_webapp_unittest_all_files': [
83 'webapp/crd/html/menu_button.css',
84 '<@(remoting_webapp_unittest_all_js_files)',
85 ],
86 'remoting_webapp_unittest_template_main':
87 'webapp/crd/html/template_unittest.html',
88
89 #
90 # Webapp JavaScript file groups.
91 #
92
[email protected]cb896cc2014-02-20 00:35:3193 # Auth (apps v1) JavaScript files.
94 # These files aren't included directly from main.html. They are
95 # referenced from the manifest.json file (appsv1 only).
96 'remoting_webapp_js_auth_v1_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:0797 'webapp/crd/js/cs_third_party_auth_trampoline.js', # client to host
98 'webapp/crd/js/cs_oauth2_trampoline.js', # Google account
[email protected]cb896cc2014-02-20 00:35:3199 ],
[email protected]af2d58182014-01-25 01:21:42100 # Auth (client to host) JavaScript files.
101 'remoting_webapp_js_auth_client2host_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07102 'webapp/crd/js/third_party_host_permissions.js',
103 'webapp/crd/js/third_party_token_fetcher.js',
[email protected]af2d58182014-01-25 01:21:42104 ],
105 # Auth (Google account) JavaScript files.
106 'remoting_webapp_js_auth_google_files': [
Gary Kacmarcik22eb37f12014-11-18 22:35:25107 'webapp/base/js/auth_dialog.js',
garykac7b15ac052014-12-02 03:12:37108 'webapp/base/js/auth_init.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07109 'webapp/crd/js/identity.js',
110 'webapp/crd/js/oauth2.js',
111 'webapp/crd/js/oauth2_api.js',
jamiewalch499b99a2015-01-09 23:19:07112 'webapp/crd/js/oauth2_api_impl.js',
[email protected]af2d58182014-01-25 01:21:42113 ],
garykacb70d4632015-02-19 02:58:52114 # Cast extension handler JavaScript files.
115 'remoting_webapp_js_cast_extension_files': [
116 'webapp/crd/js/cast_extension_handler.js',
117 ],
[email protected]fd1468352014-02-06 10:38:47118 # Client JavaScript files.
[email protected]af2d58182014-01-25 01:21:42119 'remoting_webapp_js_client_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07120 'webapp/crd/js/client_plugin.js',
121 'webapp/crd/js/client_plugin_impl.js',
kelvinp87368c72015-02-20 00:17:42122 'webapp/crd/js/client_plugin_host_desktop_impl.js',
[email protected]af2d58182014-01-25 01:21:42123 # TODO(garykac) For client_screen:
124 # * Split out pin/access code stuff into separate file.
125 # * Move client logic into session_connector
Gary Kacmarcik6110f4b2014-10-23 00:20:07126 'webapp/crd/js/client_screen.js',
127 'webapp/crd/js/client_session.js',
128 'webapp/crd/js/clipboard.js',
garykacf6377ee2015-02-13 03:08:04129 'webapp/crd/js/desktop_connected_view.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07130 'webapp/crd/js/hangout_session.js',
kelvinp87368c72015-02-20 00:17:42131 'webapp/crd/js/host_desktop.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07132 'webapp/crd/js/session_connector.js',
133 'webapp/crd/js/session_connector_impl.js',
134 'webapp/crd/js/smart_reconnector.js',
135 'webapp/crd/js/video_frame_recorder.js',
[email protected]af2d58182014-01-25 01:21:42136 ],
137 # Remoting core JavaScript files.
138 'remoting_webapp_js_core_files': [
garykac12564e82015-02-03 21:45:20139 'webapp/base/js/app_capabilities.js',
garykacccb1b862014-12-06 03:46:44140 'webapp/base/js/application.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07141 'webapp/base/js/base.js',
kelvinp6f290c22015-01-28 23:29:29142 'webapp/base/js/ipc.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07143 'webapp/base/js/platform.js',
kelvinpef56d872015-01-22 03:13:36144 'webapp/crd/js/apps_v2_migration.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07145 'webapp/crd/js/error.js',
146 'webapp/crd/js/event_handlers.js',
147 'webapp/crd/js/plugin_settings.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07148 'webapp/crd/js/remoting.js',
149 'webapp/crd/js/typecheck.js',
150 'webapp/crd/js/xhr.js',
[email protected]af2d58182014-01-25 01:21:42151 ],
garykacb70d4632015-02-19 02:58:52152 # Gnubby authentication JavaScript files.
153 'remoting_webapp_js_gnubby_auth_files': [
154 'webapp/crd/js/gnubby_auth_handler.js',
155 ],
[email protected]af2d58182014-01-25 01:21:42156 # Host JavaScript files.
[email protected]af2d58182014-01-25 01:21:42157 'remoting_webapp_js_host_files': [
garykac846c7c72014-12-19 23:36:14158 'webapp/crd/js/host.js',
159 'webapp/crd/js/host_settings.js',
160 ],
161 # Files for controlling the local machine as a host.
162 # Includes both it2me and me2me files.
163 'remoting_webapp_js_host_control_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07164 'webapp/crd/js/host_controller.js',
165 'webapp/crd/js/host_daemon_facade.js',
garykac846c7c72014-12-19 23:36:14166 'webapp/crd/js/host_screen.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07167 'webapp/crd/js/host_session.js',
garykac846c7c72014-12-19 23:36:14168 'webapp/crd/js/host_setup_dialog.js',
169 'webapp/crd/js/host_install_dialog.js',
170 'webapp/crd/js/host_installer.js',
171 'webapp/crd/js/it2me_host_facade.js',
172 'webapp/crd/js/paired_client_manager.js',
173 ],
174 # Files for displaying (in the client) info about available hosts.
175 'remoting_webapp_js_host_display_files': [
176 'webapp/crd/js/host_list.js',
jamiewalchb8749522015-01-05 20:00:49177 'webapp/crd/js/host_list_api.js',
jamiewalch499b99a2015-01-09 23:19:07178 'webapp/crd/js/host_list_api_impl.js',
garykac846c7c72014-12-19 23:36:14179 'webapp/crd/js/host_table_entry.js',
[email protected]af2d58182014-01-25 01:21:42180 ],
181 # Logging and stats JavaScript files.
182 'remoting_webapp_js_logging_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07183 'webapp/crd/js/format_iq.js',
184 'webapp/crd/js/log_to_server.js',
185 'webapp/crd/js/server_log_entry.js',
186 'webapp/crd/js/stats_accumulator.js',
[email protected]af2d58182014-01-25 01:21:42187 ],
garykacb70d4632015-02-19 02:58:52188 # Remoting signaling files.
189 'remoting_webapp_js_signaling_files': [
190 'webapp/crd/js/dns_blackhole_checker.js',
191 'webapp/crd/js/fallback_signal_strategy.js',
192 'webapp/crd/js/signal_strategy.js',
193 'webapp/crd/js/wcs_adapter.js',
194 'webapp/crd/js/wcs_sandbox_container.js',
195 'webapp/crd/js/xmpp_connection.js',
196 'webapp/crd/js/xmpp_login_handler.js',
197 'webapp/crd/js/xmpp_stream_parser.js',
198 ],
[email protected]af2d58182014-01-25 01:21:42199 # UI JavaScript files.
200 'remoting_webapp_js_ui_files': [
garykac701a99c2014-11-17 18:10:52201 'webapp/base/js/window_shape.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07202 'webapp/crd/js/butter_bar.js',
203 'webapp/crd/js/connection_stats.js',
204 'webapp/crd/js/feedback.js',
205 'webapp/crd/js/fullscreen.js',
206 'webapp/crd/js/fullscreen_v1.js',
207 'webapp/crd/js/fullscreen_v2.js',
208 'webapp/crd/js/l10n.js',
209 'webapp/crd/js/menu_button.js',
210 'webapp/crd/js/options_menu.js',
211 'webapp/crd/js/ui_mode.js',
212 'webapp/crd/js/toolbar.js',
213 'webapp/crd/js/window_frame.js',
[email protected]af2d58182014-01-25 01:21:42214 ],
[email protected]cb896cc2014-02-20 00:35:31215 # Remoting WCS sandbox JavaScript files.
216 'remoting_webapp_js_wcs_sandbox_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07217 'webapp/crd/js/wcs.js',
218 'webapp/crd/js/wcs_loader.js',
219 'webapp/crd/js/wcs_sandbox_content.js',
220 'webapp/crd/js/xhr_proxy.js',
[email protected]af2d58182014-01-25 01:21:42221 ],
[email protected]78485562014-06-23 21:12:45222
garykac7b15ac052014-12-02 03:12:37223 # The shared JavaScript files required by main.html.
224 'remoting_webapp_shared_main_html_js_files': [
[email protected]f8881a72014-04-25 08:55:18225 # Include the core files first as it is required by the other files.
226 # Otherwise, Jscompile will complain.
227 '<@(remoting_webapp_js_core_files)',
[email protected]af2d58182014-01-25 01:21:42228 '<@(remoting_webapp_js_auth_client2host_files)',
229 '<@(remoting_webapp_js_auth_google_files)',
230 '<@(remoting_webapp_js_client_files)',
[email protected]de101e12014-02-27 04:12:08231 '<@(remoting_webapp_js_gnubby_auth_files)',
[email protected]2f4e73e2014-08-16 08:35:47232 '<@(remoting_webapp_js_cast_extension_files)',
[email protected]af2d58182014-01-25 01:21:42233 '<@(remoting_webapp_js_host_files)',
garykac846c7c72014-12-19 23:36:14234 '<@(remoting_webapp_js_host_control_files)',
235 '<@(remoting_webapp_js_host_display_files)',
[email protected]af2d58182014-01-25 01:21:42236 '<@(remoting_webapp_js_logging_files)',
237 '<@(remoting_webapp_js_ui_files)',
sergeyu30975b82014-09-04 06:37:18238 '<@(remoting_webapp_js_signaling_files)',
garykacb70d4632015-02-19 02:58:52239 # Uncomment this line to include browser test files in the web app
[email protected]4eacd672014-05-09 06:58:23240 # to expedite debugging or local development.
garykacb70d4632015-02-19 02:58:52241 #'<@(remoting_webapp_browsertest_all_js_files)',
[email protected]f34acc692014-08-12 22:47:14242 ],
243
garykac7b15ac052014-12-02 03:12:37244 # The CRD-specific JavaScript files required by main.html.
245 'remoting_webapp_crd_main_html_js_files': [
garykac846c7c72014-12-19 23:36:14246 'webapp/crd/js/crd_connect.js',
247 'webapp/crd/js/crd_event_handlers.js',
garykac7b15ac052014-12-02 03:12:37248 'webapp/crd/js/crd_main.js',
garykacccb1b862014-12-06 03:46:44249 'webapp/crd/js/desktop_remoting.js',
garykac7b15ac052014-12-02 03:12:37250 ],
251
[email protected]16f0bac2014-08-21 05:24:48252 # The JavaScript files that are used in the background page.
[email protected]f34acc692014-08-12 22:47:14253 'remoting_webapp_background_js_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07254 'webapp/base/js/base.js',
kelvinp6f290c22015-01-28 23:29:29255 'webapp/base/js/ipc.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07256 'webapp/base/js/message_window_helper.js',
257 'webapp/base/js/message_window_manager.js',
kelvinp2589f692015-01-29 22:24:28258 'webapp/crd/js/activation_handler.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07259 'webapp/crd/js/app_launcher.js',
260 'webapp/crd/js/background.js',
261 'webapp/crd/js/client_session.js',
262 'webapp/crd/js/error.js',
kelvinpe24343e2015-02-03 21:01:54263 'webapp/crd/js/hangout_consent_dialog.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07264 'webapp/crd/js/host_installer.js',
265 'webapp/crd/js/host_session.js',
kelvinp5e4c4c52015-02-04 22:07:33266 'webapp/crd/js/identity.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07267 'webapp/crd/js/it2me_helpee_channel.js',
268 'webapp/crd/js/it2me_helper_channel.js',
269 'webapp/crd/js/it2me_host_facade.js',
270 'webapp/crd/js/it2me_service.js',
271 'webapp/crd/js/l10n.js',
jamiewalch6d20d9e2014-10-30 22:33:12272 'webapp/crd/js/oauth2.js',
273 'webapp/crd/js/oauth2_api.js',
kelvinpe24343e2015-02-03 21:01:54274 'webapp/crd/js/oauth2_api_impl.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07275 'webapp/crd/js/plugin_settings.js',
276 'webapp/crd/js/typecheck.js',
jamiewalch6d20d9e2014-10-30 22:33:12277 'webapp/crd/js/xhr.js',
[email protected]cb896cc2014-02-20 00:35:31278 ],
279
280 # The JavaScript files required by wcs_sandbox.html.
281 'remoting_webapp_wcs_sandbox_html_js_files': [
282 '<@(remoting_webapp_js_wcs_sandbox_files)',
Gary Kacmarcik6110f4b2014-10-23 00:20:07283 'webapp/crd/js/error.js',
284 'webapp/crd/js/plugin_settings.js',
[email protected]cb896cc2014-02-20 00:35:31285 ],
286
garykac7b15ac052014-12-02 03:12:37287 # All the JavaScript files that are shared by webapps.
288 'remoting_webapp_shared_js_files': [
[email protected]cb896cc2014-02-20 00:35:31289 # JS files for main.html.
garykac7b15ac052014-12-02 03:12:37290 '<@(remoting_webapp_shared_main_html_js_files)',
[email protected]f34acc692014-08-12 22:47:14291 '<@(remoting_webapp_background_js_files)',
kelvinp8df98f362014-08-25 18:26:19292 # JS files for message_window.html
Gary Kacmarcik6110f4b2014-10-23 00:20:07293 'webapp/base/js/message_window.js',
kelvinpe24343e2015-02-03 21:01:54294 # JS files for dialog_hangout_consent.html
295 'webapp/crd/js/hangout_consent_dialog_main.js',
[email protected]cb896cc2014-02-20 00:35:31296 # JS files for wcs_sandbox.html.
297 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
298 # so that we don't double include error.js and plugin_settings.js.
299 '<@(remoting_webapp_js_wcs_sandbox_files)',
300 # JS files referenced in mainfest.json.
301 '<@(remoting_webapp_js_auth_v1_files)',
[email protected]af2d58182014-01-25 01:21:42302 ],
303
garykac7b15ac052014-12-02 03:12:37304 # All the JavaScript files required by CRD.
305 'remoting_webapp_crd_js_files': [
306 '<@(remoting_webapp_shared_js_files)',
307 '<@(remoting_webapp_crd_main_html_js_files)',
308 ],
309
[email protected]af2d58182014-01-25 01:21:42310 'remoting_webapp_resource_files': [
311 'resources/disclosure_arrow_down.webp',
312 'resources/disclosure_arrow_right.webp',
[email protected]f733f262014-05-14 06:10:16313 'resources/drag.webp',
[email protected]af2d58182014-01-25 01:21:42314 'resources/host_setup_instructions.webp',
[email protected]f733f262014-05-14 06:10:16315 'resources/icon_close.webp',
[email protected]af2d58182014-01-25 01:21:42316 'resources/icon_cross.webp',
[email protected]f733f262014-05-14 06:10:16317 'resources/icon_disconnect.webp',
jamiewalch0bc497a82014-08-26 00:33:45318 'resources/icon_fullscreen.webp',
[email protected]ef16f932014-04-16 09:41:58319 'resources/icon_help.webp',
[email protected]af2d58182014-01-25 01:21:42320 'resources/icon_host.webp',
[email protected]f733f262014-05-14 06:10:16321 'resources/icon_maximize_restore.webp',
322 'resources/icon_minimize.webp',
[email protected]d7f7e2ff2014-07-24 03:05:19323 'resources/icon_options.webp',
[email protected]af2d58182014-01-25 01:21:42324 'resources/icon_pencil.webp',
325 'resources/icon_warning.webp',
326 'resources/infographic_my_computers.webp',
327 'resources/infographic_remote_assistance.webp',
328 'resources/plus.webp',
329 'resources/reload.webp',
330 'resources/tick.webp',
Gary Kacmarcik6110f4b2014-10-23 00:20:07331 'webapp/base/html/connection_stats.css',
Gary Kacmarcik6110f4b2014-10-23 00:20:07332 'webapp/base/html/main.css',
kelvinpe24343e2015-02-03 21:01:54333 'webapp/base/html/message_window.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07334 'webapp/base/html/message_window.css',
335 'webapp/base/resources/open_sans.css',
336 'webapp/base/resources/open_sans.woff',
337 'webapp/base/resources/spinner.gif',
Gary Kacmarcikac6b679f2014-11-13 20:52:17338 'webapp/crd/html/butter_bar.css',
kelvinpe24343e2015-02-03 21:01:54339 'webapp/crd/html/dialog_hangout_consent.html',
340 'webapp/crd/html/dialog_hangout_consent.css',
Gary Kacmarcik6110f4b2014-10-23 00:20:07341 'webapp/crd/html/toolbar.css',
342 'webapp/crd/html/menu_button.css',
343 'webapp/crd/html/window_frame.css',
344 'webapp/crd/resources/scale-to-fit.webp',
[email protected]af2d58182014-01-25 01:21:42345 ],
346
garykac7b15ac052014-12-02 03:12:37347 'remoting_webapp_crd_files': [
[email protected]af2d58182014-01-25 01:21:42348 '<@(remoting_webapp_info_files)',
garykac7b15ac052014-12-02 03:12:37349 '<@(remoting_webapp_crd_js_files)',
[email protected]af2d58182014-01-25 01:21:42350 '<@(remoting_webapp_resource_files)',
351 ],
[email protected]cb896cc2014-02-20 00:35:31352
353 # These template files are used to construct the webapp html files.
354 'remoting_webapp_template_main':
garykacc24f9022015-01-17 00:22:35355 '<(DEPTH)/remoting/webapp/crd/html/template_main.html',
[email protected]cb896cc2014-02-20 00:35:31356
357 'remoting_webapp_template_wcs_sandbox':
garykacc24f9022015-01-17 00:22:35358 '<(DEPTH)/remoting/webapp/base/html/template_wcs_sandbox.html',
[email protected]cb896cc2014-02-20 00:35:31359
[email protected]f34acc692014-08-12 22:47:14360 'remoting_webapp_template_background':
garykacc24f9022015-01-17 00:22:35361 '<(DEPTH)/remoting/webapp/crd/html/template_background.html',
[email protected]f34acc692014-08-12 22:47:14362
[email protected]cb896cc2014-02-20 00:35:31363 'remoting_webapp_template_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07364 'webapp/base/html/client_plugin.html',
365 'webapp/base/html/dialog_auth.html',
Gary Kacmarcikac6b679f2014-11-13 20:52:17366 'webapp/crd/html/butter_bar.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07367 'webapp/crd/html/dialog_client_connect_failed.html',
368 'webapp/crd/html/dialog_client_connecting.html',
369 'webapp/crd/html/dialog_client_host_needs_upgrade.html',
370 'webapp/crd/html/dialog_client_pin_prompt.html',
371 'webapp/crd/html/dialog_client_session_finished.html',
372 'webapp/crd/html/dialog_client_third_party_auth.html',
373 'webapp/crd/html/dialog_client_unconnected.html',
374 'webapp/crd/html/dialog_confirm_host_delete.html',
375 'webapp/crd/html/dialog_connection_history.html',
376 'webapp/crd/html/dialog_host.html',
377 'webapp/crd/html/dialog_host_install.html',
378 'webapp/crd/html/dialog_host_setup.html',
379 'webapp/crd/html/dialog_manage_pairings.html',
380 'webapp/crd/html/dialog_token_refresh_failed.html',
381 'webapp/crd/html/toolbar.html',
382 'webapp/crd/html/ui_header.html',
383 'webapp/crd/html/ui_it2me.html',
384 'webapp/crd/html/ui_me2me.html',
385 'webapp/crd/html/window_frame.html',
[email protected]cb896cc2014-02-20 00:35:31386 ],
387
garykac9ab9df492015-01-27 16:21:01388 # Files that contain localizable strings.
389 'desktop_remoting_webapp_localizable_files': [
390 'webapp/crd/manifest.json.jinja2',
391 '<(remoting_webapp_template_main)',
392 '<(remoting_webapp_template_wcs_sandbox)',
393 '<(remoting_webapp_template_background)',
394 '<@(remoting_webapp_template_files)',
395 '<@(remoting_webapp_crd_js_files)',
396 ],
397
[email protected]af2d58182014-01-25 01:21:42398 },
399}