blob: 129f198bd5ed1d58994e0f2916a63b5398a6b234 [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',
kelvinp1e259c472015-02-24 01:03:0464 'webapp/unittests/desktop_viewport_unittest.js',
garykacb70d4632015-02-19 02:58:5265 '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',
jrwb6a2d042015-02-26 00:04:0274 'webapp/unittests/xhr_unittest.js',
garykacb70d4632015-02-19 02:58:5275 'webapp/unittests/xmpp_connection_unittest.js',
76 'webapp/unittests/xmpp_login_handler_unittest.js',
77 'webapp/unittests/xmpp_stream_parser_unittest.js',
78 ],
79 'remoting_webapp_unittest_all_js_files': [
80 '<@(remoting_webapp_unittest_js_files)',
81 '<@(remoting_webapp_test_js_common_files)',
82 ],
83 'remoting_webapp_unittest_all_files': [
84 'webapp/crd/html/menu_button.css',
85 '<@(remoting_webapp_unittest_all_js_files)',
86 ],
87 'remoting_webapp_unittest_template_main':
88 'webapp/crd/html/template_unittest.html',
89
90 #
91 # Webapp JavaScript file groups.
92 #
93
[email protected]cb896cc2014-02-20 00:35:3194 # Auth (apps v1) JavaScript files.
95 # These files aren't included directly from main.html. They are
96 # referenced from the manifest.json file (appsv1 only).
97 'remoting_webapp_js_auth_v1_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:0798 'webapp/crd/js/cs_third_party_auth_trampoline.js', # client to host
99 'webapp/crd/js/cs_oauth2_trampoline.js', # Google account
[email protected]cb896cc2014-02-20 00:35:31100 ],
[email protected]af2d58182014-01-25 01:21:42101 # Auth (client to host) JavaScript files.
102 'remoting_webapp_js_auth_client2host_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07103 'webapp/crd/js/third_party_host_permissions.js',
104 'webapp/crd/js/third_party_token_fetcher.js',
[email protected]af2d58182014-01-25 01:21:42105 ],
106 # Auth (Google account) JavaScript files.
107 'remoting_webapp_js_auth_google_files': [
Gary Kacmarcik22eb37f12014-11-18 22:35:25108 'webapp/base/js/auth_dialog.js',
garykac7b15ac052014-12-02 03:12:37109 'webapp/base/js/auth_init.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07110 'webapp/crd/js/identity.js',
111 'webapp/crd/js/oauth2.js',
112 'webapp/crd/js/oauth2_api.js',
jamiewalch499b99a2015-01-09 23:19:07113 'webapp/crd/js/oauth2_api_impl.js',
[email protected]af2d58182014-01-25 01:21:42114 ],
garykacb70d4632015-02-19 02:58:52115 # Cast extension handler JavaScript files.
116 'remoting_webapp_js_cast_extension_files': [
117 'webapp/crd/js/cast_extension_handler.js',
118 ],
[email protected]fd1468352014-02-06 10:38:47119 # Client JavaScript files.
[email protected]af2d58182014-01-25 01:21:42120 'remoting_webapp_js_client_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07121 'webapp/crd/js/client_plugin.js',
122 'webapp/crd/js/client_plugin_impl.js',
kelvinp87368c72015-02-20 00:17:42123 'webapp/crd/js/client_plugin_host_desktop_impl.js',
[email protected]af2d58182014-01-25 01:21:42124 # TODO(garykac) For client_screen:
125 # * Split out pin/access code stuff into separate file.
126 # * Move client logic into session_connector
Gary Kacmarcik6110f4b2014-10-23 00:20:07127 'webapp/crd/js/client_screen.js',
128 'webapp/crd/js/client_session.js',
129 'webapp/crd/js/clipboard.js',
garykacf6377ee2015-02-13 03:08:04130 'webapp/crd/js/desktop_connected_view.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07131 'webapp/crd/js/hangout_session.js',
kelvinp87368c72015-02-20 00:17:42132 'webapp/crd/js/host_desktop.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07133 'webapp/crd/js/session_connector.js',
134 'webapp/crd/js/session_connector_impl.js',
135 'webapp/crd/js/smart_reconnector.js',
136 'webapp/crd/js/video_frame_recorder.js',
[email protected]af2d58182014-01-25 01:21:42137 ],
138 # Remoting core JavaScript files.
139 'remoting_webapp_js_core_files': [
garykac12564e82015-02-03 21:45:20140 'webapp/base/js/app_capabilities.js',
garykacccb1b862014-12-06 03:46:44141 'webapp/base/js/application.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07142 'webapp/base/js/base.js',
kelvinp6f290c22015-01-28 23:29:29143 'webapp/base/js/ipc.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07144 'webapp/base/js/platform.js',
kelvinpef56d872015-01-22 03:13:36145 'webapp/crd/js/apps_v2_migration.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07146 'webapp/crd/js/error.js',
147 'webapp/crd/js/event_handlers.js',
148 'webapp/crd/js/plugin_settings.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07149 'webapp/crd/js/remoting.js',
150 'webapp/crd/js/typecheck.js',
151 'webapp/crd/js/xhr.js',
[email protected]af2d58182014-01-25 01:21:42152 ],
garykacb70d4632015-02-19 02:58:52153 # Gnubby authentication JavaScript files.
154 'remoting_webapp_js_gnubby_auth_files': [
155 'webapp/crd/js/gnubby_auth_handler.js',
156 ],
[email protected]af2d58182014-01-25 01:21:42157 # Host JavaScript files.
[email protected]af2d58182014-01-25 01:21:42158 'remoting_webapp_js_host_files': [
garykac846c7c72014-12-19 23:36:14159 'webapp/crd/js/host.js',
160 'webapp/crd/js/host_settings.js',
161 ],
162 # Files for controlling the local machine as a host.
163 # Includes both it2me and me2me files.
164 'remoting_webapp_js_host_control_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07165 'webapp/crd/js/host_controller.js',
166 'webapp/crd/js/host_daemon_facade.js',
garykac846c7c72014-12-19 23:36:14167 'webapp/crd/js/host_screen.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07168 'webapp/crd/js/host_session.js',
garykac846c7c72014-12-19 23:36:14169 'webapp/crd/js/host_setup_dialog.js',
170 'webapp/crd/js/host_install_dialog.js',
171 'webapp/crd/js/host_installer.js',
172 'webapp/crd/js/it2me_host_facade.js',
173 'webapp/crd/js/paired_client_manager.js',
174 ],
175 # Files for displaying (in the client) info about available hosts.
176 'remoting_webapp_js_host_display_files': [
177 'webapp/crd/js/host_list.js',
jamiewalchb8749522015-01-05 20:00:49178 'webapp/crd/js/host_list_api.js',
jamiewalch499b99a2015-01-09 23:19:07179 'webapp/crd/js/host_list_api_impl.js',
garykac846c7c72014-12-19 23:36:14180 'webapp/crd/js/host_table_entry.js',
[email protected]af2d58182014-01-25 01:21:42181 ],
182 # Logging and stats JavaScript files.
183 'remoting_webapp_js_logging_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07184 'webapp/crd/js/format_iq.js',
185 'webapp/crd/js/log_to_server.js',
186 'webapp/crd/js/server_log_entry.js',
187 'webapp/crd/js/stats_accumulator.js',
[email protected]af2d58182014-01-25 01:21:42188 ],
garykacb70d4632015-02-19 02:58:52189 # Remoting signaling files.
190 'remoting_webapp_js_signaling_files': [
191 'webapp/crd/js/dns_blackhole_checker.js',
192 'webapp/crd/js/fallback_signal_strategy.js',
193 'webapp/crd/js/signal_strategy.js',
194 'webapp/crd/js/wcs_adapter.js',
195 'webapp/crd/js/wcs_sandbox_container.js',
196 'webapp/crd/js/xmpp_connection.js',
197 'webapp/crd/js/xmpp_login_handler.js',
198 'webapp/crd/js/xmpp_stream_parser.js',
199 ],
[email protected]af2d58182014-01-25 01:21:42200 # UI JavaScript files.
201 'remoting_webapp_js_ui_files': [
garykac701a99c2014-11-17 18:10:52202 'webapp/base/js/window_shape.js',
kelvinp1e259c472015-02-24 01:03:04203 'webapp/crd/js/bump_scroller.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07204 'webapp/crd/js/butter_bar.js',
205 'webapp/crd/js/connection_stats.js',
kelvinp1e259c472015-02-24 01:03:04206 'webapp/crd/js/desktop_viewport.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07207 'webapp/crd/js/feedback.js',
208 'webapp/crd/js/fullscreen.js',
209 'webapp/crd/js/fullscreen_v1.js',
210 'webapp/crd/js/fullscreen_v2.js',
211 'webapp/crd/js/l10n.js',
212 'webapp/crd/js/menu_button.js',
213 'webapp/crd/js/options_menu.js',
214 'webapp/crd/js/ui_mode.js',
215 'webapp/crd/js/toolbar.js',
216 'webapp/crd/js/window_frame.js',
[email protected]af2d58182014-01-25 01:21:42217 ],
[email protected]cb896cc2014-02-20 00:35:31218 # Remoting WCS sandbox JavaScript files.
219 'remoting_webapp_js_wcs_sandbox_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07220 'webapp/crd/js/wcs.js',
221 'webapp/crd/js/wcs_loader.js',
222 'webapp/crd/js/wcs_sandbox_content.js',
223 'webapp/crd/js/xhr_proxy.js',
[email protected]af2d58182014-01-25 01:21:42224 ],
[email protected]78485562014-06-23 21:12:45225
garykac7b15ac052014-12-02 03:12:37226 # The shared JavaScript files required by main.html.
227 'remoting_webapp_shared_main_html_js_files': [
[email protected]f8881a72014-04-25 08:55:18228 # Include the core files first as it is required by the other files.
229 # Otherwise, Jscompile will complain.
230 '<@(remoting_webapp_js_core_files)',
[email protected]af2d58182014-01-25 01:21:42231 '<@(remoting_webapp_js_auth_client2host_files)',
232 '<@(remoting_webapp_js_auth_google_files)',
233 '<@(remoting_webapp_js_client_files)',
[email protected]de101e12014-02-27 04:12:08234 '<@(remoting_webapp_js_gnubby_auth_files)',
[email protected]2f4e73e2014-08-16 08:35:47235 '<@(remoting_webapp_js_cast_extension_files)',
[email protected]af2d58182014-01-25 01:21:42236 '<@(remoting_webapp_js_host_files)',
garykac846c7c72014-12-19 23:36:14237 '<@(remoting_webapp_js_host_control_files)',
238 '<@(remoting_webapp_js_host_display_files)',
[email protected]af2d58182014-01-25 01:21:42239 '<@(remoting_webapp_js_logging_files)',
240 '<@(remoting_webapp_js_ui_files)',
sergeyu30975b82014-09-04 06:37:18241 '<@(remoting_webapp_js_signaling_files)',
garykacb70d4632015-02-19 02:58:52242 # Uncomment this line to include browser test files in the web app
[email protected]4eacd672014-05-09 06:58:23243 # to expedite debugging or local development.
garykacb70d4632015-02-19 02:58:52244 #'<@(remoting_webapp_browsertest_all_js_files)',
[email protected]f34acc692014-08-12 22:47:14245 ],
246
garykac7b15ac052014-12-02 03:12:37247 # The CRD-specific JavaScript files required by main.html.
248 'remoting_webapp_crd_main_html_js_files': [
garykac846c7c72014-12-19 23:36:14249 'webapp/crd/js/crd_connect.js',
250 'webapp/crd/js/crd_event_handlers.js',
garykac7b15ac052014-12-02 03:12:37251 'webapp/crd/js/crd_main.js',
garykacccb1b862014-12-06 03:46:44252 'webapp/crd/js/desktop_remoting.js',
garykac7b15ac052014-12-02 03:12:37253 ],
254
[email protected]16f0bac2014-08-21 05:24:48255 # The JavaScript files that are used in the background page.
[email protected]f34acc692014-08-12 22:47:14256 'remoting_webapp_background_js_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07257 'webapp/base/js/base.js',
kelvinp6f290c22015-01-28 23:29:29258 'webapp/base/js/ipc.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07259 'webapp/base/js/message_window_helper.js',
260 'webapp/base/js/message_window_manager.js',
kelvinp2589f692015-01-29 22:24:28261 'webapp/crd/js/activation_handler.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07262 'webapp/crd/js/app_launcher.js',
263 'webapp/crd/js/background.js',
264 'webapp/crd/js/client_session.js',
265 'webapp/crd/js/error.js',
kelvinpe24343e2015-02-03 21:01:54266 'webapp/crd/js/hangout_consent_dialog.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07267 'webapp/crd/js/host_installer.js',
268 'webapp/crd/js/host_session.js',
kelvinp5e4c4c52015-02-04 22:07:33269 'webapp/crd/js/identity.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07270 'webapp/crd/js/it2me_helpee_channel.js',
271 'webapp/crd/js/it2me_helper_channel.js',
272 'webapp/crd/js/it2me_host_facade.js',
273 'webapp/crd/js/it2me_service.js',
274 'webapp/crd/js/l10n.js',
jamiewalch6d20d9e2014-10-30 22:33:12275 'webapp/crd/js/oauth2.js',
276 'webapp/crd/js/oauth2_api.js',
kelvinpe24343e2015-02-03 21:01:54277 'webapp/crd/js/oauth2_api_impl.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07278 'webapp/crd/js/plugin_settings.js',
279 'webapp/crd/js/typecheck.js',
jamiewalch6d20d9e2014-10-30 22:33:12280 'webapp/crd/js/xhr.js',
[email protected]cb896cc2014-02-20 00:35:31281 ],
282
283 # The JavaScript files required by wcs_sandbox.html.
284 'remoting_webapp_wcs_sandbox_html_js_files': [
285 '<@(remoting_webapp_js_wcs_sandbox_files)',
Gary Kacmarcik6110f4b2014-10-23 00:20:07286 'webapp/crd/js/error.js',
287 'webapp/crd/js/plugin_settings.js',
[email protected]cb896cc2014-02-20 00:35:31288 ],
289
garykac7b15ac052014-12-02 03:12:37290 # All the JavaScript files that are shared by webapps.
291 'remoting_webapp_shared_js_files': [
[email protected]cb896cc2014-02-20 00:35:31292 # JS files for main.html.
garykac7b15ac052014-12-02 03:12:37293 '<@(remoting_webapp_shared_main_html_js_files)',
[email protected]f34acc692014-08-12 22:47:14294 '<@(remoting_webapp_background_js_files)',
kelvinp8df98f362014-08-25 18:26:19295 # JS files for message_window.html
Gary Kacmarcik6110f4b2014-10-23 00:20:07296 'webapp/base/js/message_window.js',
kelvinpe24343e2015-02-03 21:01:54297 # JS files for dialog_hangout_consent.html
298 'webapp/crd/js/hangout_consent_dialog_main.js',
[email protected]cb896cc2014-02-20 00:35:31299 # JS files for wcs_sandbox.html.
300 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
301 # so that we don't double include error.js and plugin_settings.js.
302 '<@(remoting_webapp_js_wcs_sandbox_files)',
303 # JS files referenced in mainfest.json.
304 '<@(remoting_webapp_js_auth_v1_files)',
[email protected]af2d58182014-01-25 01:21:42305 ],
306
garykac7b15ac052014-12-02 03:12:37307 # All the JavaScript files required by CRD.
308 'remoting_webapp_crd_js_files': [
309 '<@(remoting_webapp_shared_js_files)',
310 '<@(remoting_webapp_crd_main_html_js_files)',
311 ],
312
[email protected]af2d58182014-01-25 01:21:42313 'remoting_webapp_resource_files': [
314 'resources/disclosure_arrow_down.webp',
315 'resources/disclosure_arrow_right.webp',
[email protected]f733f262014-05-14 06:10:16316 'resources/drag.webp',
[email protected]af2d58182014-01-25 01:21:42317 'resources/host_setup_instructions.webp',
[email protected]f733f262014-05-14 06:10:16318 'resources/icon_close.webp',
[email protected]af2d58182014-01-25 01:21:42319 'resources/icon_cross.webp',
[email protected]f733f262014-05-14 06:10:16320 'resources/icon_disconnect.webp',
jamiewalch0bc497a82014-08-26 00:33:45321 'resources/icon_fullscreen.webp',
[email protected]ef16f932014-04-16 09:41:58322 'resources/icon_help.webp',
[email protected]af2d58182014-01-25 01:21:42323 'resources/icon_host.webp',
[email protected]f733f262014-05-14 06:10:16324 'resources/icon_maximize_restore.webp',
325 'resources/icon_minimize.webp',
[email protected]d7f7e2ff2014-07-24 03:05:19326 'resources/icon_options.webp',
[email protected]af2d58182014-01-25 01:21:42327 'resources/icon_pencil.webp',
328 'resources/icon_warning.webp',
329 'resources/infographic_my_computers.webp',
330 'resources/infographic_remote_assistance.webp',
331 'resources/plus.webp',
332 'resources/reload.webp',
333 'resources/tick.webp',
Gary Kacmarcik6110f4b2014-10-23 00:20:07334 'webapp/base/html/connection_stats.css',
Gary Kacmarcik6110f4b2014-10-23 00:20:07335 'webapp/base/html/main.css',
kelvinpe24343e2015-02-03 21:01:54336 'webapp/base/html/message_window.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07337 'webapp/base/html/message_window.css',
338 'webapp/base/resources/open_sans.css',
339 'webapp/base/resources/open_sans.woff',
340 'webapp/base/resources/spinner.gif',
Gary Kacmarcikac6b679f2014-11-13 20:52:17341 'webapp/crd/html/butter_bar.css',
kelvinpe24343e2015-02-03 21:01:54342 'webapp/crd/html/dialog_hangout_consent.html',
343 'webapp/crd/html/dialog_hangout_consent.css',
Gary Kacmarcik6110f4b2014-10-23 00:20:07344 'webapp/crd/html/toolbar.css',
345 'webapp/crd/html/menu_button.css',
346 'webapp/crd/html/window_frame.css',
347 'webapp/crd/resources/scale-to-fit.webp',
[email protected]af2d58182014-01-25 01:21:42348 ],
349
garykac7b15ac052014-12-02 03:12:37350 'remoting_webapp_crd_files': [
[email protected]af2d58182014-01-25 01:21:42351 '<@(remoting_webapp_info_files)',
garykac7b15ac052014-12-02 03:12:37352 '<@(remoting_webapp_crd_js_files)',
[email protected]af2d58182014-01-25 01:21:42353 '<@(remoting_webapp_resource_files)',
354 ],
[email protected]cb896cc2014-02-20 00:35:31355
356 # These template files are used to construct the webapp html files.
357 'remoting_webapp_template_main':
garykacc24f9022015-01-17 00:22:35358 '<(DEPTH)/remoting/webapp/crd/html/template_main.html',
[email protected]cb896cc2014-02-20 00:35:31359
360 'remoting_webapp_template_wcs_sandbox':
garykacc24f9022015-01-17 00:22:35361 '<(DEPTH)/remoting/webapp/base/html/template_wcs_sandbox.html',
[email protected]cb896cc2014-02-20 00:35:31362
[email protected]f34acc692014-08-12 22:47:14363 'remoting_webapp_template_background':
garykacc24f9022015-01-17 00:22:35364 '<(DEPTH)/remoting/webapp/crd/html/template_background.html',
[email protected]f34acc692014-08-12 22:47:14365
[email protected]cb896cc2014-02-20 00:35:31366 'remoting_webapp_template_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07367 'webapp/base/html/client_plugin.html',
368 'webapp/base/html/dialog_auth.html',
Gary Kacmarcikac6b679f2014-11-13 20:52:17369 'webapp/crd/html/butter_bar.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07370 'webapp/crd/html/dialog_client_connect_failed.html',
371 'webapp/crd/html/dialog_client_connecting.html',
372 'webapp/crd/html/dialog_client_host_needs_upgrade.html',
373 'webapp/crd/html/dialog_client_pin_prompt.html',
374 'webapp/crd/html/dialog_client_session_finished.html',
375 'webapp/crd/html/dialog_client_third_party_auth.html',
376 'webapp/crd/html/dialog_client_unconnected.html',
377 'webapp/crd/html/dialog_confirm_host_delete.html',
378 'webapp/crd/html/dialog_connection_history.html',
379 'webapp/crd/html/dialog_host.html',
380 'webapp/crd/html/dialog_host_install.html',
381 'webapp/crd/html/dialog_host_setup.html',
382 'webapp/crd/html/dialog_manage_pairings.html',
383 'webapp/crd/html/dialog_token_refresh_failed.html',
384 'webapp/crd/html/toolbar.html',
385 'webapp/crd/html/ui_header.html',
386 'webapp/crd/html/ui_it2me.html',
387 'webapp/crd/html/ui_me2me.html',
388 'webapp/crd/html/window_frame.html',
[email protected]cb896cc2014-02-20 00:35:31389 ],
390
garykac9ab9df492015-01-27 16:21:01391 # Files that contain localizable strings.
392 'desktop_remoting_webapp_localizable_files': [
393 'webapp/crd/manifest.json.jinja2',
394 '<(remoting_webapp_template_main)',
395 '<(remoting_webapp_template_wcs_sandbox)',
396 '<(remoting_webapp_template_background)',
397 '<@(remoting_webapp_template_files)',
398 '<@(remoting_webapp_crd_js_files)',
399 ],
400
[email protected]af2d58182014-01-25 01:21:42401 },
402}