1 # 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.
7 'remoting_webapp_info_files': [
8 'resources/chromoting16.webp',
9 'resources/chromoting48.webp',
10 'resources/chromoting128.webp',
13 # Jscompile proto files.
14 # These provide type information for jscompile.
15 'remoting_webapp_js_proto_files': [
16 'webapp/js_proto/chrome_proto.js',
17 'webapp/js_proto/console_proto.js',
18 'webapp/js_proto/dom_proto.js',
19 'webapp/js_proto/remoting_proto.js',
22 # Auth (apps v1) JavaScript files.
23 # These files aren't included directly from main.html. They are
24 # referenced from the manifest.json file (appsv1 only).
25 'remoting_webapp_js_auth_v1_files': [
26 'webapp/cs_third_party_auth_trampoline.js', # client to host
27 'webapp/cs_oauth2_trampoline.js', # Google account
29 # Auth (client to host) JavaScript files.
30 'remoting_webapp_js_auth_client2host_files': [
31 'webapp/third_party_host_permissions.js',
32 'webapp/third_party_token_fetcher.js',
34 # Auth (Google account) JavaScript files.
35 'remoting_webapp_js_auth_google_files': [
38 'webapp/oauth2_api.js',
40 # Client JavaScript files.
41 'remoting_webapp_js_client_files': [
42 'webapp/client_plugin.js',
43 # TODO(garykac) For client_screen:
44 # * Split out pin/access code stuff into separate file.
45 # * Move client logic into session_connector
46 'webapp/client_screen.js',
47 'webapp/client_session.js',
48 'webapp/clipboard.js',
49 'webapp/hangout_session.js',
50 'webapp/media_source_renderer.js',
51 'webapp/session_connector.js',
52 'webapp/smart_reconnector.js',
53 'webapp/video_frame_recorder.js',
55 # Remoting core JavaScript files.
56 'remoting_webapp_js_core_files': [
59 'webapp/event_handlers.js',
60 'webapp/plugin_settings.js',
61 # TODO(garykac) Split out UI client stuff from remoting.js.
63 'webapp/typecheck.js',
66 # Host JavaScript files.
67 # Includes both it2me and me2me files.
68 'remoting_webapp_js_host_files': [
69 'webapp/host_controller.js',
70 'webapp/host_daemon_facade.js',
71 'webapp/it2me_host_facade.js',
72 'webapp/host_session.js',
74 # Logging and stats JavaScript files.
75 'remoting_webapp_js_logging_files': [
76 'webapp/format_iq.js',
77 'webapp/log_to_server.js',
78 'webapp/server_log_entry.js',
79 'webapp/stats_accumulator.js',
81 # UI JavaScript files.
82 'remoting_webapp_js_ui_files': [
83 'webapp/butter_bar.js',
84 'webapp/connection_stats.js',
86 'webapp/fullscreen.js',
87 'webapp/fullscreen_v1.js',
88 'webapp/fullscreen_v2.js',
90 'webapp/menu_button.js',
91 'webapp/options_menu.js',
94 'webapp/window_frame.js',
96 # UI files for controlling the local machine as a host.
97 'remoting_webapp_js_ui_host_control_files': [
98 'webapp/host_screen.js',
99 'webapp/host_setup_dialog.js',
100 'webapp/host_install_dialog.js',
101 'webapp/host_installer.js',
102 'webapp/paired_client_manager.js',
104 # UI files for displaying (in the client) info about available hosts.
105 'remoting_webapp_js_ui_host_display_files': [
107 'webapp/host_list.js',
108 'webapp/host_settings.js',
109 'webapp/host_table_entry.js',
111 # Remoting signaling files.
112 'remoting_webapp_js_signaling_files': [
113 'webapp/signal_strategy.js',
114 'webapp/wcs_adapter.js',
115 'webapp/wcs_sandbox_container.js',
116 'webapp/xmpp_connection.js',
117 'webapp/xmpp_login_handler.js',
118 'webapp/xmpp_stream_parser.js',
120 # Remoting WCS sandbox JavaScript files.
121 'remoting_webapp_js_wcs_sandbox_files': [
123 'webapp/wcs_loader.js',
124 'webapp/wcs_sandbox_content.js',
125 'webapp/xhr_proxy.js',
127 # gnubby authentication JavaScript files.
128 'remoting_webapp_js_gnubby_auth_files': [
129 'webapp/gnubby_auth_handler.js',
131 # cast extension handler JavaScript files.
132 'remoting_webapp_js_cast_extension_files': [
133 'webapp/cast_extension_handler.js',
135 # browser test JavaScript files.
136 'remoting_webapp_js_browser_test_files': [
137 'webapp/browser_test/browser_test.js',
138 'webapp/browser_test/bump_scroll_browser_test.js',
139 'webapp/browser_test/cancel_pin_browser_test.js',
140 'webapp/browser_test/invalid_pin_browser_test.js',
141 'webapp/browser_test/update_pin_browser_test.js',
143 # These product files are excluded from our JavaScript unittest
144 'remoting_webapp_unittest_exclude_files': [
145 # background.js is where the onLoad handler is defined, which
146 # makes it the entry point of the background page.
147 'webapp/background/background.js',
148 # event_handlers.js is where the onLoad handler is defined, which
149 # makes it the entry point of the webapp.
150 'webapp/event_handlers.js',
152 # The unit test cases for the webapp
153 'remoting_webapp_unittest_js_files': [
154 'webapp/js_proto/chrome_proto.js',
155 'webapp/unittests/chrome_mocks.js',
156 'webapp/unittests/base_unittest.js',
157 'webapp/unittests/it2me_helpee_channel_unittest.js',
158 'webapp/unittests/it2me_helper_channel_unittest.js',
159 'webapp/unittests/it2me_service_unittest.js',
160 'webapp/unittests/l10n_unittest.js',
161 'webapp/unittests/menu_button_unittest.js',
162 'webapp/unittests/xmpp_connection_unittest.js',
163 'webapp/unittests/xmpp_login_handler_unittest.js',
164 'webapp/unittests/xmpp_stream_parser_unittest.js',
166 'remoting_webapp_unittest_additional_files': [
167 'webapp/menu_button.css',
169 'remoting_webapp_unittest_template_main':
170 'webapp/html/template_unittest.html',
172 # The JavaScript files required by main.html.
173 'remoting_webapp_main_html_js_files': [
174 # Include the core files first as it is required by the other files.
175 # Otherwise, Jscompile will complain.
176 '<@(remoting_webapp_js_core_files)',
177 '<@(remoting_webapp_js_auth_client2host_files)',
178 '<@(remoting_webapp_js_auth_google_files)',
179 '<@(remoting_webapp_js_client_files)',
180 '<@(remoting_webapp_js_gnubby_auth_files)',
181 '<@(remoting_webapp_js_cast_extension_files)',
182 '<@(remoting_webapp_js_host_files)',
183 '<@(remoting_webapp_js_logging_files)',
184 '<@(remoting_webapp_js_ui_files)',
185 '<@(remoting_webapp_js_ui_host_control_files)',
186 '<@(remoting_webapp_js_ui_host_display_files)',
187 '<@(remoting_webapp_js_signaling_files)',
188 # Uncomment this line to include browser test files in the web app
189 # to expedite debugging or local development.
190 # '<@(remoting_webapp_js_browser_test_files)'
193 # The JavaScript files that are used in the background page.
194 'remoting_webapp_background_js_files': [
196 'webapp/client_session.js',
198 'webapp/host_installer.js',
199 'webapp/host_session.js',
200 'webapp/it2me_host_facade.js',
202 'webapp/plugin_settings.js',
203 'webapp/typecheck.js',
204 'webapp/background/app_launcher.js',
205 'webapp/background/background.js',
206 'webapp/background/it2me_helpee_channel.js',
207 'webapp/background/it2me_helper_channel.js',
208 'webapp/background/it2me_service.js',
209 'webapp/background/message_window_helper.js',
210 'webapp/background/message_window_manager.js',
213 # The JavaScript files required by wcs_sandbox.html.
214 'remoting_webapp_wcs_sandbox_html_js_files': [
215 '<@(remoting_webapp_js_wcs_sandbox_files)',
217 'webapp/plugin_settings.js',
220 # All the JavaScript files required by the webapp.
221 'remoting_webapp_all_js_files': [
222 # JS files for main.html.
223 '<@(remoting_webapp_main_html_js_files)',
224 '<@(remoting_webapp_background_js_files)',
225 # JS files for message_window.html
226 'webapp/background/message_window.js',
227 # JS files for wcs_sandbox.html.
228 # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
229 # so that we don't double include error.js and plugin_settings.js.
230 '<@(remoting_webapp_js_wcs_sandbox_files)',
231 # JS files referenced in mainfest.json.
232 '<@(remoting_webapp_js_auth_v1_files)',
235 'remoting_webapp_resource_files': [
236 'resources/disclosure_arrow_down.webp',
237 'resources/disclosure_arrow_right.webp',
238 'resources/drag.webp',
239 'resources/host_setup_instructions.webp',
240 'resources/icon_close.webp',
241 'resources/icon_cross.webp',
242 'resources/icon_disconnect.webp',
243 'resources/icon_fullscreen.webp',
244 'resources/icon_help.webp',
245 'resources/icon_host.webp',
246 'resources/icon_maximize_restore.webp',
247 'resources/icon_minimize.webp',
248 'resources/icon_options.webp',
249 'resources/icon_pencil.webp',
250 'resources/icon_warning.webp',
251 'resources/infographic_my_computers.webp',
252 'resources/infographic_remote_assistance.webp',
253 'resources/plus.webp',
254 'resources/reload.webp',
255 'resources/tick.webp',
256 'webapp/connection_stats.css',
257 'webapp/html/message_window.html',
259 'webapp/menu_button.css',
260 'webapp/message_window.css',
261 'webapp/open_sans.css',
262 'webapp/open_sans.woff',
263 'webapp/scale-to-fit.webp',
264 'webapp/spinner.gif',
265 'webapp/toolbar.css',
266 'webapp/window_frame.css',
269 'remoting_webapp_files': [
270 '<@(remoting_webapp_info_files)',
271 '<@(remoting_webapp_all_js_files)',
272 '<@(remoting_webapp_resource_files)',
275 # These template files are used to construct the webapp html files.
276 'remoting_webapp_template_main':
277 'webapp/html/template_main.html',
279 'remoting_webapp_template_wcs_sandbox':
280 'webapp/html/template_wcs_sandbox.html',
282 'remoting_webapp_template_background':
283 'webapp/html/template_background.html',
285 'remoting_webapp_template_files': [
286 'webapp/html/butterbar.html',
287 'webapp/html/client_plugin.html',
288 'webapp/html/dialog_auth.html',
289 'webapp/html/dialog_client_connect_failed.html',
290 'webapp/html/dialog_client_connecting.html',
291 'webapp/html/dialog_client_host_needs_upgrade.html',
292 'webapp/html/dialog_client_pin_prompt.html',
293 'webapp/html/dialog_client_session_finished.html',
294 'webapp/html/dialog_client_third_party_auth.html',
295 'webapp/html/dialog_client_unconnected.html',
296 'webapp/html/dialog_confirm_host_delete.html',
297 'webapp/html/dialog_connection_history.html',
298 'webapp/html/dialog_host.html',
299 'webapp/html/dialog_host_install.html',
300 'webapp/html/dialog_host_setup.html',
301 'webapp/html/dialog_manage_pairings.html',
302 'webapp/html/dialog_token_refresh_failed.html',
303 'webapp/html/toolbar.html',
304 'webapp/html/ui_header.html',
305 'webapp/html/ui_it2me.html',
306 'webapp/html/ui_me2me.html',
307 'webapp/html/window_frame.html',