Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: remoting/remoting_webapp.gypi

Issue 139283010: Break some parts of remoting.gyp into separate .gypi files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move remoting_locales back into remoting.gyp Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 {
6 'variables': {
7 'remoting_webapp_info_files': [
8 'resources/chromoting16.webp',
9 'resources/chromoting48.webp',
10 'resources/chromoting128.webp',
11 'webapp/manifest.json',
12 ],
13
14 # Jscompile proto files.
15 # These provide type information for jscompile.
16 'remoting_webapp_js_proto_files': [
17 'webapp/js_proto/chrome_proto.js',
18 'webapp/js_proto/console_proto.js',
19 'webapp/js_proto/dom_proto.js',
20 'webapp/js_proto/remoting_proto.js',
21 ],
22
23 # Auth (client to host) JavaScript files.
24 'remoting_webapp_js_auth_client2host_files': [
25 'webapp/cs_third_party_auth_trampoline.js',
26 'webapp/third_party_host_permissions.js',
27 'webapp/third_party_token_fetcher.js',
28 ],
29 # Auth (Google account) JavaScript files.
30 'remoting_webapp_js_auth_google_files': [
31 'webapp/cs_oauth2_trampoline.js',
32 'webapp/identity.js',
33 'webapp/oauth2.js',
34 'webapp/oauth2_api.js',
35 ],
36 # Client JavaScript files..
37 'remoting_webapp_js_client_files': [
38 'webapp/client_plugin.js',
39 # TODO(garykac) For client_screen:
40 # * Split out pin/access code stuff into separate file.
41 # * Move client logic into session_connector
42 'webapp/client_screen.js',
43 'webapp/client_session.js',
44 'webapp/clipboard.js',
45 'webapp/session_connector.js',
46 ],
47 # Remoting core JavaScript files.
48 'remoting_webapp_js_core_files': [
49 'webapp/error.js',
50 'webapp/event_handlers.js',
51 'webapp/plugin_settings.js',
52 # TODO(garykac) Split out UI client stuff from remoting.js.
53 'webapp/remoting.js',
54 'webapp/xhr.js',
55 'webapp/xhr_proxy.js',
56 ],
57 # Host JavaScript files.
58 # Includes both it2me and me2me files.
59 'remoting_webapp_js_host_files': [
60 'webapp/host_controller.js',
61 'webapp/host_dispatcher.js',
62 'webapp/host_native_messaging.js',
63 'webapp/host_session.js',
64 ],
65 # Logging and stats JavaScript files.
66 'remoting_webapp_js_logging_files': [
67 'webapp/format_iq.js',
68 'webapp/log_to_server.js',
69 'webapp/server_log_entry.js',
70 'webapp/stats_accumulator.js',
71 ],
72 # UI JavaScript files.
73 'remoting_webapp_js_ui_files': [
74 'webapp/butter_bar.js',
75 'webapp/connection_stats.js',
76 'webapp/l10n.js',
77 'webapp/menu_button.js',
78 'webapp/ui_mode.js',
79 'webapp/toolbar.js',
80 ],
81 # UI files for controlling the local machine as a host.
82 'remoting_webapp_js_ui_host_control_files': [
83 'webapp/host_screen.js',
84 'webapp/host_setup_dialog.js',
85 'webapp/paired_client_manager.js',
86 ],
87 # UI files for displaying (in the client) info about available hosts.
88 'remoting_webapp_js_ui_host_display_files': [
89 'webapp/host.js',
90 'webapp/host_list.js',
91 'webapp/host_settings.js',
92 'webapp/host_table_entry.js',
93 ],
94 # Remoting WCS JavaScript files.
95 'remoting_webapp_js_wcs_files': [
96 'webapp/wcs.js',
97 'webapp/wcs_loader.js',
98 'webapp/wcs_sandbox_container.js',
99 'webapp/wcs_sandbox_content.js',
100 ],
101 'remoting_webapp_js_files': [
102 '<@(remoting_webapp_js_auth_client2host_files)',
103 '<@(remoting_webapp_js_auth_google_files)',
104 '<@(remoting_webapp_js_client_files)',
105 '<@(remoting_webapp_js_core_files)',
106 '<@(remoting_webapp_js_host_files)',
107 '<@(remoting_webapp_js_logging_files)',
108 '<@(remoting_webapp_js_ui_files)',
109 '<@(remoting_webapp_js_ui_host_control_files)',
110 '<@(remoting_webapp_js_ui_host_display_files)',
111 '<@(remoting_webapp_js_wcs_files)',
112 ],
113
114 'remoting_webapp_resource_files': [
115 'resources/disclosure_arrow_down.webp',
116 'resources/disclosure_arrow_right.webp',
117 'resources/host_setup_instructions.webp',
118 'resources/icon_cross.webp',
119 'resources/icon_host.webp',
120 'resources/icon_pencil.webp',
121 'resources/icon_warning.webp',
122 'resources/infographic_my_computers.webp',
123 'resources/infographic_remote_assistance.webp',
124 'resources/plus.webp',
125 'resources/reload.webp',
126 'resources/tick.webp',
127 'webapp/connection_stats.css',
128 'webapp/main.css',
129 'webapp/main.html',
130 'webapp/menu_button.css',
131 'webapp/open_sans.css',
132 'webapp/open_sans.woff',
133 'webapp/scale-to-fit.webp',
134 'webapp/spinner.gif',
135 'webapp/toolbar.css',
136 'webapp/wcs_sandbox.html',
137 ],
138
139 'remoting_webapp_files': [
140 '<@(remoting_webapp_info_files)',
141 '<@(remoting_webapp_js_files)',
142 '<@(remoting_webapp_resource_files)',
143 ],
144 },
145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698