summaryrefslogtreecommitdiffstats
path: root/remoting/remoting_webapp.gypi
diff options
context:
space:
mode:
authorgarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-25 01:21:42 +0000
committergarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-01-25 01:21:42 +0000
commitaf2d581822a0202c1bb31e431edb56a0847d9d93 (patch)
treef55e34aa4feddc2ef31946fd5641a90af8616d3b /remoting/remoting_webapp.gypi
parent7502ef10589559e5cf9bce023f1fe8395e81143f (diff)
downloadchromium_src-af2d581822a0202c1bb31e431edb56a0847d9d93.zip
chromium_src-af2d581822a0202c1bb31e431edb56a0847d9d93.tar.gz
chromium_src-af2d581822a0202c1bb31e431edb56a0847d9d93.tar.bz2
Move remoting webapp files into separate .gypi.
Also, break up the JS files into related groups. BUG= Review URL: https://codereview.chromium.org/137433005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247053 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/remoting_webapp.gypi')
-rw-r--r--remoting/remoting_webapp.gypi140
1 files changed, 140 insertions, 0 deletions
diff --git a/remoting/remoting_webapp.gypi b/remoting/remoting_webapp.gypi
new file mode 100644
index 0000000..03be46e
--- /dev/null
+++ b/remoting/remoting_webapp.gypi
@@ -0,0 +1,140 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'remoting_webapp_info_files': [
+ 'resources/chromoting16.webp',
+ 'resources/chromoting48.webp',
+ 'resources/chromoting128.webp',
+ 'webapp/manifest.json',
+ ],
+
+ # Auth (client to host) JavaScript files.
+ 'remoting_webapp_js_auth_client2host_files': [
+ 'webapp/cs_third_party_auth_trampoline.js',
+ 'webapp/third_party_host_permissions.js',
+ 'webapp/third_party_token_fetcher.js',
+ ],
+ # Auth (Google account) JavaScript files.
+ 'remoting_webapp_js_auth_google_files': [
+ 'webapp/cs_oauth2_trampoline.js',
+ 'webapp/identity.js',
+ 'webapp/oauth2.js',
+ 'webapp/oauth2_api.js',
+ ],
+ # Client JavaScript files..
+ 'remoting_webapp_js_client_files': [
+ 'webapp/client_plugin.js',
+ # TODO(garykac) For client_screen:
+ # * Split out pin/access code stuff into separate file.
+ # * Move client logic into session_connector
+ 'webapp/client_screen.js',
+ 'webapp/client_session.js',
+ 'webapp/clipboard.js',
+ 'webapp/session_connector.js',
+ ],
+ # Remoting core JavaScript files.
+ 'remoting_webapp_js_core_files': [
+ 'webapp/error.js',
+ 'webapp/event_handlers.js',
+ 'webapp/plugin_settings.js',
+ # TODO(garykac) Split out UI client stuff from remoting.js.
+ 'webapp/remoting.js',
+ 'webapp/xhr.js',
+ 'webapp/xhr_proxy.js',
+ ],
+ # Host JavaScript files.
+ # Includes both it2me and me2me files.
+ 'remoting_webapp_js_host_files': [
+ 'webapp/host_controller.js',
+ 'webapp/host_dispatcher.js',
+ 'webapp/host_native_messaging.js',
+ 'webapp/host_session.js',
+ ],
+ # Logging and stats JavaScript files.
+ 'remoting_webapp_js_logging_files': [
+ 'webapp/format_iq.js',
+ 'webapp/log_to_server.js',
+ 'webapp/server_log_entry.js',
+ 'webapp/stats_accumulator.js',
+ ],
+ # UI JavaScript files.
+ 'remoting_webapp_js_ui_files': [
+ 'webapp/butter_bar.js',
+ 'webapp/connection_stats.js',
+ 'webapp/l10n.js',
+ 'webapp/menu_button.js',
+ 'webapp/ui_mode.js',
+ 'webapp/toolbar.js',
+ ],
+ # UI files for controlling the local machine as a host.
+ 'remoting_webapp_js_ui_host_control_files': [
+ 'webapp/host_screen.js',
+ 'webapp/host_setup_dialog.js',
+ 'webapp/paired_client_manager.js',
+ ],
+ # UI files for displaying (in the client) info about available hosts.
+ 'remoting_webapp_js_ui_host_display_files': [
+ 'webapp/host.js',
+ 'webapp/host_list.js',
+ 'webapp/host_settings.js',
+ 'webapp/host_table_entry.js',
+ ],
+ # Remoting WCS JavaScript files.
+ 'remoting_webapp_js_wcs_files': [
+ 'webapp/wcs.js',
+ 'webapp/wcs_loader.js',
+ 'webapp/wcs_sandbox_container.js',
+ 'webapp/wcs_sandbox_content.js',
+ ],
+ 'remoting_webapp_js_unused_files': [
+ 'webapp/connection_history.js',
+ ],
+ 'remoting_webapp_js_files': [
+ '<@(remoting_webapp_js_auth_client2host_files)',
+ '<@(remoting_webapp_js_auth_google_files)',
+ '<@(remoting_webapp_js_client_files)',
+ '<@(remoting_webapp_js_core_files)',
+ '<@(remoting_webapp_js_host_files)',
+ '<@(remoting_webapp_js_logging_files)',
+ '<@(remoting_webapp_js_ui_files)',
+ '<@(remoting_webapp_js_ui_host_control_files)',
+ '<@(remoting_webapp_js_ui_host_display_files)',
+ '<@(remoting_webapp_js_wcs_files)',
+ ],
+
+ 'remoting_webapp_resource_files': [
+ 'resources/disclosure_arrow_down.webp',
+ 'resources/disclosure_arrow_right.webp',
+ 'resources/host_setup_instructions.webp',
+ 'resources/icon_cross.webp',
+ 'resources/icon_host.webp',
+ 'resources/icon_pencil.webp',
+ 'resources/icon_warning.webp',
+ 'resources/infographic_my_computers.webp',
+ 'resources/infographic_remote_assistance.webp',
+ 'resources/plus.webp',
+ 'resources/reload.webp',
+ 'resources/tick.webp',
+ 'webapp/connection_history.css',
+ 'webapp/connection_stats.css',
+ 'webapp/main.css',
+ 'webapp/main.html',
+ 'webapp/menu_button.css',
+ 'webapp/open_sans.css',
+ 'webapp/open_sans.woff',
+ 'webapp/scale-to-fit.webp',
+ 'webapp/spinner.gif',
+ 'webapp/toolbar.css',
+ 'webapp/wcs_sandbox.html',
+ ],
+
+ 'remoting_webapp_files': [
+ '<@(remoting_webapp_info_files)',
+ '<@(remoting_webapp_js_files)',
+ '<@(remoting_webapp_resource_files)',
+ ],
+ },
+}