blob: 297241ddd9fffb9c1282a93a1f8043f6d123ad11 [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',
19 ],
20
[email protected]cb896cc2014-02-20 00:35:3121 # Auth (apps v1) JavaScript files.
22 # These files aren't included directly from main.html. They are
23 # referenced from the manifest.json file (appsv1 only).
24 'remoting_webapp_js_auth_v1_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:0725 'webapp/crd/js/cs_third_party_auth_trampoline.js', # client to host
26 'webapp/crd/js/cs_oauth2_trampoline.js', # Google account
[email protected]cb896cc2014-02-20 00:35:3127 ],
[email protected]af2d58182014-01-25 01:21:4228 # Auth (client to host) JavaScript files.
29 'remoting_webapp_js_auth_client2host_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:0730 'webapp/crd/js/third_party_host_permissions.js',
31 'webapp/crd/js/third_party_token_fetcher.js',
[email protected]af2d58182014-01-25 01:21:4232 ],
33 # Auth (Google account) JavaScript files.
34 'remoting_webapp_js_auth_google_files': [
Gary Kacmarcik22eb37f12014-11-18 22:35:2535 'webapp/base/js/auth_dialog.js',
garykac7b15ac052014-12-02 03:12:3736 'webapp/base/js/auth_init.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:0737 'webapp/crd/js/identity.js',
38 'webapp/crd/js/oauth2.js',
39 'webapp/crd/js/oauth2_api.js',
jamiewalch499b99a2015-01-09 23:19:0740 'webapp/crd/js/oauth2_api_impl.js',
[email protected]af2d58182014-01-25 01:21:4241 ],
[email protected]fd1468352014-02-06 10:38:4742 # Client JavaScript files.
[email protected]af2d58182014-01-25 01:21:4243 'remoting_webapp_js_client_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:0744 'webapp/crd/js/client_plugin.js',
45 'webapp/crd/js/client_plugin_impl.js',
[email protected]af2d58182014-01-25 01:21:4246 # TODO(garykac) For client_screen:
47 # * Split out pin/access code stuff into separate file.
48 # * Move client logic into session_connector
Gary Kacmarcik6110f4b2014-10-23 00:20:0749 'webapp/crd/js/client_screen.js',
50 'webapp/crd/js/client_session.js',
51 'webapp/crd/js/clipboard.js',
garykacf6377ee2015-02-13 03:08:0452 'webapp/crd/js/desktop_connected_view.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:0753 'webapp/crd/js/hangout_session.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:0754 'webapp/crd/js/session_connector.js',
55 'webapp/crd/js/session_connector_impl.js',
56 'webapp/crd/js/smart_reconnector.js',
57 'webapp/crd/js/video_frame_recorder.js',
[email protected]af2d58182014-01-25 01:21:4258 ],
59 # Remoting core JavaScript files.
60 'remoting_webapp_js_core_files': [
garykac12564e82015-02-03 21:45:2061 'webapp/base/js/app_capabilities.js',
garykacccb1b862014-12-06 03:46:4462 'webapp/base/js/application.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:0763 'webapp/base/js/base.js',
kelvinp6f290c22015-01-28 23:29:2964 'webapp/base/js/ipc.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:0765 'webapp/base/js/platform.js',
kelvinpef56d872015-01-22 03:13:3666 'webapp/crd/js/apps_v2_migration.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:0767 'webapp/crd/js/error.js',
68 'webapp/crd/js/event_handlers.js',
69 'webapp/crd/js/plugin_settings.js',
[email protected]af2d58182014-01-25 01:21:4270 # TODO(garykac) Split out UI client stuff from remoting.js.
Gary Kacmarcik6110f4b2014-10-23 00:20:0771 'webapp/crd/js/remoting.js',
72 'webapp/crd/js/typecheck.js',
73 'webapp/crd/js/xhr.js',
[email protected]af2d58182014-01-25 01:21:4274 ],
75 # Host JavaScript files.
[email protected]af2d58182014-01-25 01:21:4276 'remoting_webapp_js_host_files': [
garykac846c7c72014-12-19 23:36:1477 'webapp/crd/js/host.js',
78 'webapp/crd/js/host_settings.js',
79 ],
80 # Files for controlling the local machine as a host.
81 # Includes both it2me and me2me files.
82 'remoting_webapp_js_host_control_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:0783 'webapp/crd/js/host_controller.js',
84 'webapp/crd/js/host_daemon_facade.js',
garykac846c7c72014-12-19 23:36:1485 'webapp/crd/js/host_screen.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:0786 'webapp/crd/js/host_session.js',
garykac846c7c72014-12-19 23:36:1487 'webapp/crd/js/host_setup_dialog.js',
88 'webapp/crd/js/host_install_dialog.js',
89 'webapp/crd/js/host_installer.js',
90 'webapp/crd/js/it2me_host_facade.js',
91 'webapp/crd/js/paired_client_manager.js',
92 ],
93 # Files for displaying (in the client) info about available hosts.
94 'remoting_webapp_js_host_display_files': [
95 'webapp/crd/js/host_list.js',
jamiewalchb8749522015-01-05 20:00:4996 'webapp/crd/js/host_list_api.js',
jamiewalch499b99a2015-01-09 23:19:0797 'webapp/crd/js/host_list_api_impl.js',
garykac846c7c72014-12-19 23:36:1498 'webapp/crd/js/host_table_entry.js',
[email protected]af2d58182014-01-25 01:21:4299 ],
100 # Logging and stats JavaScript files.
101 'remoting_webapp_js_logging_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07102 'webapp/crd/js/format_iq.js',
103 'webapp/crd/js/log_to_server.js',
104 'webapp/crd/js/server_log_entry.js',
105 'webapp/crd/js/stats_accumulator.js',
[email protected]af2d58182014-01-25 01:21:42106 ],
107 # UI JavaScript files.
108 'remoting_webapp_js_ui_files': [
garykac701a99c2014-11-17 18:10:52109 'webapp/base/js/window_shape.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07110 'webapp/crd/js/butter_bar.js',
111 'webapp/crd/js/connection_stats.js',
112 'webapp/crd/js/feedback.js',
113 'webapp/crd/js/fullscreen.js',
114 'webapp/crd/js/fullscreen_v1.js',
115 'webapp/crd/js/fullscreen_v2.js',
116 'webapp/crd/js/l10n.js',
117 'webapp/crd/js/menu_button.js',
118 'webapp/crd/js/options_menu.js',
119 'webapp/crd/js/ui_mode.js',
120 'webapp/crd/js/toolbar.js',
121 'webapp/crd/js/window_frame.js',
[email protected]af2d58182014-01-25 01:21:42122 ],
sergeyu30975b82014-09-04 06:37:18123 # Remoting signaling files.
124 'remoting_webapp_js_signaling_files': [
sergeyu19969e2f2015-01-23 00:44:38125 'webapp/crd/js/dns_blackhole_checker.js',
jamiewalchb47eef32015-01-14 22:59:14126 'webapp/crd/js/fallback_signal_strategy.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07127 'webapp/crd/js/signal_strategy.js',
128 'webapp/crd/js/wcs_adapter.js',
129 'webapp/crd/js/wcs_sandbox_container.js',
130 'webapp/crd/js/xmpp_connection.js',
131 'webapp/crd/js/xmpp_login_handler.js',
132 'webapp/crd/js/xmpp_stream_parser.js',
sergeyuea321002014-09-03 04:50:26133 ],
[email protected]cb896cc2014-02-20 00:35:31134 # Remoting WCS sandbox JavaScript files.
135 'remoting_webapp_js_wcs_sandbox_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07136 'webapp/crd/js/wcs.js',
137 'webapp/crd/js/wcs_loader.js',
138 'webapp/crd/js/wcs_sandbox_content.js',
139 'webapp/crd/js/xhr_proxy.js',
[email protected]af2d58182014-01-25 01:21:42140 ],
[email protected]de101e12014-02-27 04:12:08141 # gnubby authentication JavaScript files.
142 'remoting_webapp_js_gnubby_auth_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07143 'webapp/crd/js/gnubby_auth_handler.js',
[email protected]de101e12014-02-27 04:12:08144 ],
[email protected]2f4e73e2014-08-16 08:35:47145 # cast extension handler JavaScript files.
146 'remoting_webapp_js_cast_extension_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07147 'webapp/crd/js/cast_extension_handler.js',
[email protected]2f4e73e2014-08-16 08:35:47148 ],
sergeyu19969e2f2015-01-23 00:44:38149 # Shared files for tests.
150 'remoting_webapp_js_test_common_files': [
151 'webapp/unittests/mock_signal_strategy.js',
152 ],
[email protected]4eacd672014-05-09 06:58:23153 # browser test JavaScript files.
154 'remoting_webapp_js_browser_test_files': [
155 'webapp/browser_test/browser_test.js',
[email protected]6395ecd2014-08-08 01:02:25156 'webapp/browser_test/bump_scroll_browser_test.js',
[email protected]e1680702014-05-14 03:09:01157 'webapp/browser_test/cancel_pin_browser_test.js',
158 'webapp/browser_test/invalid_pin_browser_test.js',
kelvinpd90fe692015-01-13 00:32:17159 'webapp/browser_test/it2me_browser_test.js',
jamiewalch8e0666d2014-09-25 02:10:10160 'webapp/browser_test/mock_client_plugin.js',
jamiewalch499b99a2015-01-09 23:19:07161 'webapp/browser_test/mock_host_list_api.js',
162 'webapp/browser_test/mock_identity.js',
163 'webapp/browser_test/mock_oauth2_api.js',
jamiewalch8e0666d2014-09-25 02:10:10164 'webapp/browser_test/mock_session_connector.js',
jamiewalch7689f9b2014-09-11 01:51:18165 'webapp/browser_test/scrollbar_browser_test.js',
jamiewalch499b99a2015-01-09 23:19:07166 'webapp/browser_test/timeout_waiter.js',
167 'webapp/browser_test/unauthenticated_browser_test.js',
[email protected]e1680702014-05-14 03:09:01168 'webapp/browser_test/update_pin_browser_test.js',
[email protected]4eacd672014-05-09 06:58:23169 ],
[email protected]78485562014-06-23 21:12:45170 # These product files are excluded from our JavaScript unittest
171 'remoting_webapp_unittest_exclude_files': [
[email protected]f34acc692014-08-12 22:47:14172 # background.js is where the onLoad handler is defined, which
173 # makes it the entry point of the background page.
Gary Kacmarcik6110f4b2014-10-23 00:20:07174 'webapp/crd/js/background.js',
[email protected]78485562014-06-23 21:12:45175 ],
176 # The unit test cases for the webapp
[email protected]23005b62014-08-14 12:42:28177 'remoting_webapp_unittest_js_files': [
[email protected]23005b62014-08-14 12:42:28178 'webapp/unittests/chrome_mocks.js',
garykac23605fe2015-01-14 19:37:21179 'webapp/js_proto/chrome_proto.js',
kelvinpef56d872015-01-22 03:13:36180 'webapp/unittests/apps_v2_migration_unittest.js',
[email protected]09b6ce892014-07-18 23:40:05181 'webapp/unittests/base_unittest.js',
sergeyu19969e2f2015-01-23 00:44:38182 'webapp/unittests/dns_blackhole_checker_unittest.js',
kelvinpc67ab012015-02-03 06:14:26183 'webapp/unittests/event_hook_unittest.js',
jamiewalchb47eef32015-01-14 22:59:14184 'webapp/unittests/fallback_signal_strategy_unittest.js',
kelvinp6f290c22015-01-28 23:29:29185 'webapp/unittests/ipc_unittest.js',
[email protected]16f0bac2014-08-21 05:24:48186 'webapp/unittests/it2me_helpee_channel_unittest.js',
[email protected]23005b62014-08-14 12:42:28187 'webapp/unittests/it2me_helper_channel_unittest.js',
sergeyuea321002014-09-03 04:50:26188 'webapp/unittests/it2me_service_unittest.js',
189 'webapp/unittests/l10n_unittest.js',
190 'webapp/unittests/menu_button_unittest.js',
191 'webapp/unittests/xmpp_connection_unittest.js',
192 'webapp/unittests/xmpp_login_handler_unittest.js',
193 'webapp/unittests/xmpp_stream_parser_unittest.js',
[email protected]79132942014-07-19 02:59:53194 ],
195 'remoting_webapp_unittest_additional_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07196 'webapp/crd/html/menu_button.css',
[email protected]78485562014-06-23 21:12:45197 ],
198 'remoting_webapp_unittest_template_main':
Gary Kacmarcik6110f4b2014-10-23 00:20:07199 'webapp/crd/html/template_unittest.html',
[email protected]78485562014-06-23 21:12:45200
garykac7b15ac052014-12-02 03:12:37201 # The shared JavaScript files required by main.html.
202 'remoting_webapp_shared_main_html_js_files': [
[email protected]f8881a72014-04-25 08:55:18203 # Include the core files first as it is required by the other files.
204 # Otherwise, Jscompile will complain.
205 '<@(remoting_webapp_js_core_files)',
[email protected]af2d58182014-01-25 01:21:42206 '<@(remoting_webapp_js_auth_client2host_files)',
207 '<@(remoting_webapp_js_auth_google_files)',
208 '<@(remoting_webapp_js_client_files)',
[email protected]de101e12014-02-27 04:12:08209 '<@(remoting_webapp_js_gnubby_auth_files)',
[email protected]2f4e73e2014-08-16 08:35:47210 '<@(remoting_webapp_js_cast_extension_files)',
[email protected]af2d58182014-01-25 01:21:42211 '<@(remoting_webapp_js_host_files)',
garykac846c7c72014-12-19 23:36:14212 '<@(remoting_webapp_js_host_control_files)',
213 '<@(remoting_webapp_js_host_display_files)',
[email protected]af2d58182014-01-25 01:21:42214 '<@(remoting_webapp_js_logging_files)',
215 '<@(remoting_webapp_js_ui_files)',
sergeyu30975b82014-09-04 06:37:18216 '<@(remoting_webapp_js_signaling_files)',
sergeyu19969e2f2015-01-23 00:44:38217 # Uncomment these lines to include browser test files in the web app
[email protected]4eacd672014-05-09 06:58:23218 # to expedite debugging or local development.
sergeyu19969e2f2015-01-23 00:44:38219 # '<@(remoting_webapp_js_browser_test_files)',
220 # '<@(remoting_webapp_js_test_common_files)'
[email protected]f34acc692014-08-12 22:47:14221 ],
222
garykac7b15ac052014-12-02 03:12:37223 # The CRD-specific JavaScript files required by main.html.
224 'remoting_webapp_crd_main_html_js_files': [
garykac846c7c72014-12-19 23:36:14225 'webapp/crd/js/crd_connect.js',
226 'webapp/crd/js/crd_event_handlers.js',
garykac7b15ac052014-12-02 03:12:37227 'webapp/crd/js/crd_main.js',
garykacccb1b862014-12-06 03:46:44228 'webapp/crd/js/desktop_remoting.js',
garykac7b15ac052014-12-02 03:12:37229 ],
230
[email protected]16f0bac2014-08-21 05:24:48231 # The JavaScript files that are used in the background page.
[email protected]f34acc692014-08-12 22:47:14232 'remoting_webapp_background_js_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07233 'webapp/base/js/base.js',
kelvinp6f290c22015-01-28 23:29:29234 'webapp/base/js/ipc.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07235 'webapp/base/js/message_window_helper.js',
236 'webapp/base/js/message_window_manager.js',
kelvinp2589f692015-01-29 22:24:28237 'webapp/crd/js/activation_handler.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07238 'webapp/crd/js/app_launcher.js',
239 'webapp/crd/js/background.js',
240 'webapp/crd/js/client_session.js',
241 'webapp/crd/js/error.js',
kelvinpe24343e2015-02-03 21:01:54242 'webapp/crd/js/hangout_consent_dialog.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07243 'webapp/crd/js/host_installer.js',
244 'webapp/crd/js/host_session.js',
kelvinp5e4c4c52015-02-04 22:07:33245 'webapp/crd/js/identity.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07246 'webapp/crd/js/it2me_helpee_channel.js',
247 'webapp/crd/js/it2me_helper_channel.js',
248 'webapp/crd/js/it2me_host_facade.js',
249 'webapp/crd/js/it2me_service.js',
250 'webapp/crd/js/l10n.js',
jamiewalch6d20d9e2014-10-30 22:33:12251 'webapp/crd/js/oauth2.js',
252 'webapp/crd/js/oauth2_api.js',
kelvinpe24343e2015-02-03 21:01:54253 'webapp/crd/js/oauth2_api_impl.js',
Gary Kacmarcik6110f4b2014-10-23 00:20:07254 'webapp/crd/js/plugin_settings.js',
255 'webapp/crd/js/typecheck.js',
jamiewalch6d20d9e2014-10-30 22:33:12256 'webapp/crd/js/xhr.js',
[email protected]cb896cc2014-02-20 00:35:31257 ],
258
259 # The JavaScript files required by wcs_sandbox.html.
260 'remoting_webapp_wcs_sandbox_html_js_files': [
261 '<@(remoting_webapp_js_wcs_sandbox_files)',
Gary Kacmarcik6110f4b2014-10-23 00:20:07262 'webapp/crd/js/error.js',
263 'webapp/crd/js/plugin_settings.js',
[email protected]cb896cc2014-02-20 00:35:31264 ],
265
garykac7b15ac052014-12-02 03:12:37266 # All the JavaScript files that are shared by webapps.
267 'remoting_webapp_shared_js_files': [
[email protected]cb896cc2014-02-20 00:35:31268 # JS files for main.html.
garykac7b15ac052014-12-02 03:12:37269 '<@(remoting_webapp_shared_main_html_js_files)',
[email protected]f34acc692014-08-12 22:47:14270 '<@(remoting_webapp_background_js_files)',
kelvinp8df98f362014-08-25 18:26:19271 # JS files for message_window.html
Gary Kacmarcik6110f4b2014-10-23 00:20:07272 'webapp/base/js/message_window.js',
kelvinpe24343e2015-02-03 21:01:54273 # JS files for dialog_hangout_consent.html
274 'webapp/crd/js/hangout_consent_dialog_main.js',
[email protected]cb896cc2014-02-20 00:35:31275 # JS files for wcs_sandbox.html.
276 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
277 # so that we don't double include error.js and plugin_settings.js.
278 '<@(remoting_webapp_js_wcs_sandbox_files)',
279 # JS files referenced in mainfest.json.
280 '<@(remoting_webapp_js_auth_v1_files)',
[email protected]af2d58182014-01-25 01:21:42281 ],
282
garykac7b15ac052014-12-02 03:12:37283 # All the JavaScript files required by CRD.
284 'remoting_webapp_crd_js_files': [
285 '<@(remoting_webapp_shared_js_files)',
286 '<@(remoting_webapp_crd_main_html_js_files)',
287 ],
288
[email protected]af2d58182014-01-25 01:21:42289 'remoting_webapp_resource_files': [
290 'resources/disclosure_arrow_down.webp',
291 'resources/disclosure_arrow_right.webp',
[email protected]f733f262014-05-14 06:10:16292 'resources/drag.webp',
[email protected]af2d58182014-01-25 01:21:42293 'resources/host_setup_instructions.webp',
[email protected]f733f262014-05-14 06:10:16294 'resources/icon_close.webp',
[email protected]af2d58182014-01-25 01:21:42295 'resources/icon_cross.webp',
[email protected]f733f262014-05-14 06:10:16296 'resources/icon_disconnect.webp',
jamiewalch0bc497a82014-08-26 00:33:45297 'resources/icon_fullscreen.webp',
[email protected]ef16f932014-04-16 09:41:58298 'resources/icon_help.webp',
[email protected]af2d58182014-01-25 01:21:42299 'resources/icon_host.webp',
[email protected]f733f262014-05-14 06:10:16300 'resources/icon_maximize_restore.webp',
301 'resources/icon_minimize.webp',
[email protected]d7f7e2ff2014-07-24 03:05:19302 'resources/icon_options.webp',
[email protected]af2d58182014-01-25 01:21:42303 'resources/icon_pencil.webp',
304 'resources/icon_warning.webp',
305 'resources/infographic_my_computers.webp',
306 'resources/infographic_remote_assistance.webp',
307 'resources/plus.webp',
308 'resources/reload.webp',
309 'resources/tick.webp',
Gary Kacmarcik6110f4b2014-10-23 00:20:07310 'webapp/base/html/connection_stats.css',
Gary Kacmarcik6110f4b2014-10-23 00:20:07311 'webapp/base/html/main.css',
kelvinpe24343e2015-02-03 21:01:54312 'webapp/base/html/message_window.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07313 'webapp/base/html/message_window.css',
314 'webapp/base/resources/open_sans.css',
315 'webapp/base/resources/open_sans.woff',
316 'webapp/base/resources/spinner.gif',
Gary Kacmarcikac6b679f2014-11-13 20:52:17317 'webapp/crd/html/butter_bar.css',
kelvinpe24343e2015-02-03 21:01:54318 'webapp/crd/html/dialog_hangout_consent.html',
319 'webapp/crd/html/dialog_hangout_consent.css',
Gary Kacmarcik6110f4b2014-10-23 00:20:07320 'webapp/crd/html/toolbar.css',
321 'webapp/crd/html/menu_button.css',
322 'webapp/crd/html/window_frame.css',
323 'webapp/crd/resources/scale-to-fit.webp',
[email protected]af2d58182014-01-25 01:21:42324 ],
325
garykac7b15ac052014-12-02 03:12:37326 'remoting_webapp_crd_files': [
[email protected]af2d58182014-01-25 01:21:42327 '<@(remoting_webapp_info_files)',
garykac7b15ac052014-12-02 03:12:37328 '<@(remoting_webapp_crd_js_files)',
[email protected]af2d58182014-01-25 01:21:42329 '<@(remoting_webapp_resource_files)',
330 ],
[email protected]cb896cc2014-02-20 00:35:31331
332 # These template files are used to construct the webapp html files.
333 'remoting_webapp_template_main':
garykacc24f9022015-01-17 00:22:35334 '<(DEPTH)/remoting/webapp/crd/html/template_main.html',
[email protected]cb896cc2014-02-20 00:35:31335
336 'remoting_webapp_template_wcs_sandbox':
garykacc24f9022015-01-17 00:22:35337 '<(DEPTH)/remoting/webapp/base/html/template_wcs_sandbox.html',
[email protected]cb896cc2014-02-20 00:35:31338
[email protected]f34acc692014-08-12 22:47:14339 'remoting_webapp_template_background':
garykacc24f9022015-01-17 00:22:35340 '<(DEPTH)/remoting/webapp/crd/html/template_background.html',
[email protected]f34acc692014-08-12 22:47:14341
[email protected]cb896cc2014-02-20 00:35:31342 'remoting_webapp_template_files': [
Gary Kacmarcik6110f4b2014-10-23 00:20:07343 'webapp/base/html/client_plugin.html',
344 'webapp/base/html/dialog_auth.html',
Gary Kacmarcikac6b679f2014-11-13 20:52:17345 'webapp/crd/html/butter_bar.html',
Gary Kacmarcik6110f4b2014-10-23 00:20:07346 'webapp/crd/html/dialog_client_connect_failed.html',
347 'webapp/crd/html/dialog_client_connecting.html',
348 'webapp/crd/html/dialog_client_host_needs_upgrade.html',
349 'webapp/crd/html/dialog_client_pin_prompt.html',
350 'webapp/crd/html/dialog_client_session_finished.html',
351 'webapp/crd/html/dialog_client_third_party_auth.html',
352 'webapp/crd/html/dialog_client_unconnected.html',
353 'webapp/crd/html/dialog_confirm_host_delete.html',
354 'webapp/crd/html/dialog_connection_history.html',
355 'webapp/crd/html/dialog_host.html',
356 'webapp/crd/html/dialog_host_install.html',
357 'webapp/crd/html/dialog_host_setup.html',
358 'webapp/crd/html/dialog_manage_pairings.html',
359 'webapp/crd/html/dialog_token_refresh_failed.html',
360 'webapp/crd/html/toolbar.html',
361 'webapp/crd/html/ui_header.html',
362 'webapp/crd/html/ui_it2me.html',
363 'webapp/crd/html/ui_me2me.html',
364 'webapp/crd/html/window_frame.html',
[email protected]cb896cc2014-02-20 00:35:31365 ],
366
garykac9ab9df492015-01-27 16:21:01367 # Files that contain localizable strings.
368 'desktop_remoting_webapp_localizable_files': [
369 'webapp/crd/manifest.json.jinja2',
370 '<(remoting_webapp_template_main)',
371 '<(remoting_webapp_template_wcs_sandbox)',
372 '<(remoting_webapp_template_background)',
373 '<@(remoting_webapp_template_files)',
374 '<@(remoting_webapp_crd_js_files)',
375 ],
376
[email protected]af2d58182014-01-25 01:21:42377 },
378}