Scroll-bar browser test.
[chromium-blink-merge.git] / remoting / remoting_webapp_files.gypi
blob08c885a08de43a01472016b3fe3ff9fa3e1cf9fb
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.
6   'variables': {
7     'remoting_webapp_info_files': [
8       'resources/chromoting16.webp',
9       'resources/chromoting48.webp',
10       'resources/chromoting128.webp',
11     ],
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',
20     ],
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
28     ],
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',
33     ],
34     # Auth (Google account) JavaScript files.
35     'remoting_webapp_js_auth_google_files': [
36       'webapp/identity.js',
37       'webapp/oauth2.js',
38       'webapp/oauth2_api.js',
39     ],
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',
54     ],
55     # Remoting core JavaScript files.
56     'remoting_webapp_js_core_files': [
57       'webapp/base.js',
58       'webapp/error.js',
59       'webapp/event_handlers.js',
60       'webapp/plugin_settings.js',
61       # TODO(garykac) Split out UI client stuff from remoting.js.
62       'webapp/remoting.js',
63       'webapp/typecheck.js',
64       'webapp/xhr.js',
65     ],
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',
73     ],
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',
80     ],
81     # UI JavaScript files.
82     'remoting_webapp_js_ui_files': [
83       'webapp/butter_bar.js',
84       'webapp/connection_stats.js',
85       'webapp/feedback.js',
86       'webapp/fullscreen.js',
87       'webapp/fullscreen_v1.js',
88       'webapp/fullscreen_v2.js',
89       'webapp/l10n.js',
90       'webapp/menu_button.js',
91       'webapp/options_menu.js',
92       'webapp/ui_mode.js',
93       'webapp/toolbar.js',
94       'webapp/window_frame.js',
95     ],
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',
103     ],
104     # UI files for displaying (in the client) info about available hosts.
105     'remoting_webapp_js_ui_host_display_files': [
106       'webapp/host.js',
107       'webapp/host_list.js',
108       'webapp/host_settings.js',
109       'webapp/host_table_entry.js',
110     ],
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',
119     ],
120     # Remoting WCS sandbox JavaScript files.
121     'remoting_webapp_js_wcs_sandbox_files': [
122       'webapp/wcs.js',
123       'webapp/wcs_loader.js',
124       'webapp/wcs_sandbox_content.js',
125       'webapp/xhr_proxy.js',
126     ],
127     # gnubby authentication JavaScript files.
128     'remoting_webapp_js_gnubby_auth_files': [
129       'webapp/gnubby_auth_handler.js',
130     ],
131     # cast extension handler JavaScript files.
132     'remoting_webapp_js_cast_extension_files': [
133       'webapp/cast_extension_handler.js',
134     ],
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/scrollbar_browser_test.js',
142       'webapp/browser_test/update_pin_browser_test.js',
143     ],
144     # These product files are excluded from our JavaScript unittest
145     'remoting_webapp_unittest_exclude_files': [
146       # background.js is where the onLoad handler is defined, which
147       # makes it the entry point of the background page.
148       'webapp/background/background.js',
149       # event_handlers.js is where the onLoad handler is defined, which
150       # makes it the entry point of the webapp.
151       'webapp/event_handlers.js',
152     ],
153     # The unit test cases for the webapp
154     'remoting_webapp_unittest_js_files': [
155       'webapp/js_proto/chrome_proto.js',
156       'webapp/unittests/chrome_mocks.js',
157       'webapp/unittests/base_unittest.js',
158       'webapp/unittests/it2me_helpee_channel_unittest.js',
159       'webapp/unittests/it2me_helper_channel_unittest.js',
160       'webapp/unittests/it2me_service_unittest.js',
161       'webapp/unittests/l10n_unittest.js',
162       'webapp/unittests/menu_button_unittest.js',
163       'webapp/unittests/xmpp_connection_unittest.js',
164       'webapp/unittests/xmpp_login_handler_unittest.js',
165       'webapp/unittests/xmpp_stream_parser_unittest.js',
166     ],
167     'remoting_webapp_unittest_additional_files': [
168       'webapp/menu_button.css',
169     ],
170     'remoting_webapp_unittest_template_main':
171       'webapp/html/template_unittest.html',
173     # The JavaScript files required by main.html.
174     'remoting_webapp_main_html_js_files': [
175       # Include the core files first as it is required by the other files.
176       # Otherwise, Jscompile will complain.
177       '<@(remoting_webapp_js_core_files)',
178       '<@(remoting_webapp_js_auth_client2host_files)',
179       '<@(remoting_webapp_js_auth_google_files)',
180       '<@(remoting_webapp_js_client_files)',
181       '<@(remoting_webapp_js_gnubby_auth_files)',
182       '<@(remoting_webapp_js_cast_extension_files)',
183       '<@(remoting_webapp_js_host_files)',
184       '<@(remoting_webapp_js_logging_files)',
185       '<@(remoting_webapp_js_ui_files)',
186       '<@(remoting_webapp_js_ui_host_control_files)',
187       '<@(remoting_webapp_js_ui_host_display_files)',
188       '<@(remoting_webapp_js_signaling_files)',
189       # Uncomment this line to include browser test files in the web app
190       # to expedite debugging or local development.
191       # '<@(remoting_webapp_js_browser_test_files)'
192     ],
194     # The JavaScript files that are used in the background page.
195     'remoting_webapp_background_js_files': [
196       'webapp/base.js',
197       'webapp/client_session.js',
198       'webapp/error.js',
199       'webapp/host_installer.js',
200       'webapp/host_session.js',
201       'webapp/it2me_host_facade.js',
202       'webapp/l10n.js',
203       'webapp/plugin_settings.js',
204       'webapp/typecheck.js',
205       'webapp/background/app_launcher.js',
206       'webapp/background/background.js',
207       'webapp/background/it2me_helpee_channel.js',
208       'webapp/background/it2me_helper_channel.js',
209       'webapp/background/it2me_service.js',
210       'webapp/background/message_window_helper.js',
211       'webapp/background/message_window_manager.js',
212     ],
214     # The JavaScript files required by wcs_sandbox.html.
215     'remoting_webapp_wcs_sandbox_html_js_files': [
216       '<@(remoting_webapp_js_wcs_sandbox_files)',
217       'webapp/error.js',
218       'webapp/plugin_settings.js',
219     ],
221     # All the JavaScript files required by the webapp.
222     'remoting_webapp_all_js_files': [
223       # JS files for main.html.
224       '<@(remoting_webapp_main_html_js_files)',
225       '<@(remoting_webapp_background_js_files)',
226       # JS files for message_window.html
227       'webapp/background/message_window.js',
228       # JS files for wcs_sandbox.html.
229       # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
230       # so that we don't double include error.js and plugin_settings.js.
231       '<@(remoting_webapp_js_wcs_sandbox_files)',
232       # JS files referenced in mainfest.json.
233       '<@(remoting_webapp_js_auth_v1_files)',
234     ],
236     'remoting_webapp_resource_files': [
237       'resources/disclosure_arrow_down.webp',
238       'resources/disclosure_arrow_right.webp',
239       'resources/drag.webp',
240       'resources/host_setup_instructions.webp',
241       'resources/icon_close.webp',
242       'resources/icon_cross.webp',
243       'resources/icon_disconnect.webp',
244       'resources/icon_fullscreen.webp',
245       'resources/icon_help.webp',
246       'resources/icon_host.webp',
247       'resources/icon_maximize_restore.webp',
248       'resources/icon_minimize.webp',
249       'resources/icon_options.webp',
250       'resources/icon_pencil.webp',
251       'resources/icon_warning.webp',
252       'resources/infographic_my_computers.webp',
253       'resources/infographic_remote_assistance.webp',
254       'resources/plus.webp',
255       'resources/reload.webp',
256       'resources/tick.webp',
257       'webapp/connection_stats.css',
258       'webapp/html/message_window.html',
259       'webapp/main.css',
260       'webapp/menu_button.css',
261       'webapp/message_window.css',
262       'webapp/open_sans.css',
263       'webapp/open_sans.woff',
264       'webapp/scale-to-fit.webp',
265       'webapp/spinner.gif',
266       'webapp/toolbar.css',
267       'webapp/window_frame.css',
268     ],
270     'remoting_webapp_files': [
271       '<@(remoting_webapp_info_files)',
272       '<@(remoting_webapp_all_js_files)',
273       '<@(remoting_webapp_resource_files)',
274     ],
276     # These template files are used to construct the webapp html files.
277     'remoting_webapp_template_main':
278       'webapp/html/template_main.html',
280     'remoting_webapp_template_wcs_sandbox':
281       'webapp/html/template_wcs_sandbox.html',
283     'remoting_webapp_template_background':
284       'webapp/html/template_background.html',
286     'remoting_webapp_template_files': [
287       'webapp/html/butterbar.html',
288       'webapp/html/client_plugin.html',
289       'webapp/html/dialog_auth.html',
290       'webapp/html/dialog_client_connect_failed.html',
291       'webapp/html/dialog_client_connecting.html',
292       'webapp/html/dialog_client_host_needs_upgrade.html',
293       'webapp/html/dialog_client_pin_prompt.html',
294       'webapp/html/dialog_client_session_finished.html',
295       'webapp/html/dialog_client_third_party_auth.html',
296       'webapp/html/dialog_client_unconnected.html',
297       'webapp/html/dialog_confirm_host_delete.html',
298       'webapp/html/dialog_connection_history.html',
299       'webapp/html/dialog_host.html',
300       'webapp/html/dialog_host_install.html',
301       'webapp/html/dialog_host_setup.html',
302       'webapp/html/dialog_manage_pairings.html',
303       'webapp/html/dialog_token_refresh_failed.html',
304       'webapp/html/toolbar.html',
305       'webapp/html/ui_header.html',
306       'webapp/html/ui_it2me.html',
307       'webapp/html/ui_me2me.html',
308       'webapp/html/window_frame.html',
309     ],
311   },