Support policy registration using a preobtained access token.
[chromium-blink-merge.git] / remoting / remoting_webapp_files.gypi
blob287442e37691d69542379cdc68c218c0307f2954
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/media_source_renderer.js',
50       'webapp/session_connector.js',
51     ],
52     # Remoting core JavaScript files.
53     'remoting_webapp_js_core_files': [
54       'webapp/base.js',
55       'webapp/error.js',
56       'webapp/event_handlers.js',
57       'webapp/plugin_settings.js',
58       # TODO(garykac) Split out UI client stuff from remoting.js.
59       'webapp/remoting.js',
60       'webapp/typecheck.js',
61       'webapp/xhr.js',
62     ],
63     # Host JavaScript files.
64     # Includes both it2me and me2me files.
65     'remoting_webapp_js_host_files': [
66       'webapp/host_controller.js',
67       'webapp/host_dispatcher.js',
68       'webapp/host_it2me_dispatcher.js',
69       'webapp/host_it2me_native_messaging.js',
70       'webapp/host_native_messaging.js',
71       'webapp/host_session.js',
72     ],
73     # Logging and stats JavaScript files.
74     'remoting_webapp_js_logging_files': [
75       'webapp/format_iq.js',
76       'webapp/log_to_server.js',
77       'webapp/server_log_entry.js',
78       'webapp/stats_accumulator.js',
79     ],
80     # UI JavaScript files.
81     'remoting_webapp_js_ui_files': [
82       'webapp/butter_bar.js',
83       'webapp/connection_stats.js',
84       'webapp/l10n.js',
85       'webapp/menu_button.js',
86       'webapp/ui_mode.js',
87       'webapp/toolbar.js',
88       'webapp/feedback.js',
89     ],
90     # UI files for controlling the local machine as a host.
91     'remoting_webapp_js_ui_host_control_files': [
92       'webapp/host_screen.js',
93       'webapp/host_setup_dialog.js',
94       'webapp/host_install_dialog.js',
95       'webapp/paired_client_manager.js',
96     ],
97     # UI files for displaying (in the client) info about available hosts.
98     'remoting_webapp_js_ui_host_display_files': [
99       'webapp/host.js',
100       'webapp/host_list.js',
101       'webapp/host_settings.js',
102       'webapp/host_table_entry.js',
103     ],
104     # Remoting WCS container JavaScript files.
105     'remoting_webapp_js_wcs_container_files': [
106       'webapp/wcs_sandbox_container.js',
107     ],
108     # Remoting WCS sandbox JavaScript files.
109     'remoting_webapp_js_wcs_sandbox_files': [
110       'webapp/wcs.js',
111       'webapp/wcs_loader.js',
112       'webapp/wcs_sandbox_content.js',
113       'webapp/xhr_proxy.js',
114     ],
115     # gnubby authentication JavaScript files.
116     'remoting_webapp_js_gnubby_auth_files': [
117       'webapp/gnubby_auth_handler.js',
118     ],
119     # The JavaScript files required by main.html.
120     'remoting_webapp_main_html_js_files': [
121       # Include the core files first as it is required by the other files.
122       # Otherwise, Jscompile will complain.
123       '<@(remoting_webapp_js_core_files)',
124       '<@(remoting_webapp_js_auth_client2host_files)',
125       '<@(remoting_webapp_js_auth_google_files)',
126       '<@(remoting_webapp_js_client_files)',
127       '<@(remoting_webapp_js_gnubby_auth_files)',
128       '<@(remoting_webapp_js_host_files)',
129       '<@(remoting_webapp_js_logging_files)',
130       '<@(remoting_webapp_js_ui_files)',
131       '<@(remoting_webapp_js_ui_host_control_files)',
132       '<@(remoting_webapp_js_ui_host_display_files)',
133       '<@(remoting_webapp_js_wcs_container_files)',
134     ],
136     # The JavaScript files required by wcs_sandbox.html.
137     'remoting_webapp_wcs_sandbox_html_js_files': [
138       '<@(remoting_webapp_js_wcs_sandbox_files)',
139       'webapp/error.js',
140       'webapp/plugin_settings.js',
141     ],
143     # All the JavaScript files required by the webapp.
144     'remoting_webapp_all_js_files': [
145       # JS files for main.html.
146       '<@(remoting_webapp_main_html_js_files)',
147       # JS files for wcs_sandbox.html.
148       # Use r_w_js_wcs_sandbox_files instead of r_w_wcs_sandbox_html_js_files
149       # so that we don't double include error.js and plugin_settings.js.
150       '<@(remoting_webapp_js_wcs_sandbox_files)',
151       # JS files referenced in mainfest.json.
152       '<@(remoting_webapp_js_auth_v1_files)',
153     ],
155     'remoting_webapp_resource_files': [
156       'resources/disclosure_arrow_down.webp',
157       'resources/disclosure_arrow_right.webp',
158       'resources/host_setup_instructions.webp',
159       'resources/icon_cross.webp',
160       'resources/icon_help.webp',
161       'resources/icon_host.webp',
162       'resources/icon_pencil.webp',
163       'resources/icon_warning.webp',
164       'resources/infographic_my_computers.webp',
165       'resources/infographic_remote_assistance.webp',
166       'resources/plus.webp',
167       'resources/reload.webp',
168       'resources/tick.webp',
169       'webapp/connection_stats.css',
170       'webapp/main.css',
171       'webapp/menu_button.css',
172       'webapp/open_sans.css',
173       'webapp/open_sans.woff',
174       'webapp/scale-to-fit.webp',
175       'webapp/spinner.gif',
176       'webapp/toolbar.css',
177     ],
179     'remoting_webapp_files': [
180       '<@(remoting_webapp_info_files)',
181       '<@(remoting_webapp_all_js_files)',
182       '<@(remoting_webapp_resource_files)',
183     ],
185     # These template files are used to construct the webapp html files.
186     'remoting_webapp_template_main':
187       'webapp/html/template_main.html',
189     'remoting_webapp_template_wcs_sandbox':
190       'webapp/html/template_wcs_sandbox.html',
192     'remoting_webapp_template_files': [
193       'webapp/html/butterbar.html',
194       'webapp/html/client_plugin.html',
195       'webapp/html/dialog_auth.html',
196       'webapp/html/dialog_client_connect_failed.html',
197       'webapp/html/dialog_client_connecting.html',
198       'webapp/html/dialog_client_host_needs_upgrade.html',
199       'webapp/html/dialog_client_pin_prompt.html',
200       'webapp/html/dialog_client_session_finished.html',
201       'webapp/html/dialog_client_third_party_auth.html',
202       'webapp/html/dialog_client_unconnected.html',
203       'webapp/html/dialog_confirm_host_delete.html',
204       'webapp/html/dialog_connection_history.html',
205       'webapp/html/dialog_host.html',
206       'webapp/html/dialog_host_install.html',
207       'webapp/html/dialog_host_setup.html',
208       'webapp/html/dialog_manage_pairings.html',
209       'webapp/html/dialog_token_refresh_failed.html',
210       'webapp/html/toolbar.html',
211       'webapp/html/ui_header.html',
212       'webapp/html/ui_it2me.html',
213       'webapp/html/ui_me2me.html',
214     ],
216   },