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

Side by Side Diff: remoting/remoting_webapp_files.gypi

Issue 464133003: CastExtensionHandler for Chromoting Webapp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor fix Created 6 years, 4 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
« no previous file with comments | « no previous file | remoting/webapp/cast_extension_handler.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'remoting_webapp_info_files': [ 7 'remoting_webapp_info_files': [
8 'resources/chromoting16.webp', 8 'resources/chromoting16.webp',
9 'resources/chromoting48.webp', 9 'resources/chromoting48.webp',
10 'resources/chromoting128.webp', 10 'resources/chromoting128.webp',
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 'remoting_webapp_js_wcs_sandbox_files': [ 114 'remoting_webapp_js_wcs_sandbox_files': [
115 'webapp/wcs.js', 115 'webapp/wcs.js',
116 'webapp/wcs_loader.js', 116 'webapp/wcs_loader.js',
117 'webapp/wcs_sandbox_content.js', 117 'webapp/wcs_sandbox_content.js',
118 'webapp/xhr_proxy.js', 118 'webapp/xhr_proxy.js',
119 ], 119 ],
120 # gnubby authentication JavaScript files. 120 # gnubby authentication JavaScript files.
121 'remoting_webapp_js_gnubby_auth_files': [ 121 'remoting_webapp_js_gnubby_auth_files': [
122 'webapp/gnubby_auth_handler.js', 122 'webapp/gnubby_auth_handler.js',
123 ], 123 ],
124 # cast extension handler JavaScript files.
125 'remoting_webapp_js_cast_extension_files': [
126 'webapp/cast_extension_handler.js',
127 ],
124 # browser test JavaScript files. 128 # browser test JavaScript files.
125 'remoting_webapp_js_browser_test_files': [ 129 'remoting_webapp_js_browser_test_files': [
126 'webapp/browser_test/browser_test.js', 130 'webapp/browser_test/browser_test.js',
127 'webapp/browser_test/bump_scroll_browser_test.js', 131 'webapp/browser_test/bump_scroll_browser_test.js',
128 'webapp/browser_test/cancel_pin_browser_test.js', 132 'webapp/browser_test/cancel_pin_browser_test.js',
129 'webapp/browser_test/invalid_pin_browser_test.js', 133 'webapp/browser_test/invalid_pin_browser_test.js',
130 'webapp/browser_test/update_pin_browser_test.js', 134 'webapp/browser_test/update_pin_browser_test.js',
131 ], 135 ],
132 # These product files are excluded from our JavaScript unittest 136 # These product files are excluded from our JavaScript unittest
133 'remoting_webapp_unittest_exclude_files': [ 137 'remoting_webapp_unittest_exclude_files': [
(...skipping 16 matching lines...) Expand all
150 154
151 # The JavaScript files required by main.html. 155 # The JavaScript files required by main.html.
152 'remoting_webapp_main_html_js_files': [ 156 'remoting_webapp_main_html_js_files': [
153 # Include the core files first as it is required by the other files. 157 # Include the core files first as it is required by the other files.
154 # Otherwise, Jscompile will complain. 158 # Otherwise, Jscompile will complain.
155 '<@(remoting_webapp_js_core_files)', 159 '<@(remoting_webapp_js_core_files)',
156 '<@(remoting_webapp_js_auth_client2host_files)', 160 '<@(remoting_webapp_js_auth_client2host_files)',
157 '<@(remoting_webapp_js_auth_google_files)', 161 '<@(remoting_webapp_js_auth_google_files)',
158 '<@(remoting_webapp_js_client_files)', 162 '<@(remoting_webapp_js_client_files)',
159 '<@(remoting_webapp_js_gnubby_auth_files)', 163 '<@(remoting_webapp_js_gnubby_auth_files)',
164 '<@(remoting_webapp_js_cast_extension_files)',
160 '<@(remoting_webapp_js_host_files)', 165 '<@(remoting_webapp_js_host_files)',
161 '<@(remoting_webapp_js_logging_files)', 166 '<@(remoting_webapp_js_logging_files)',
162 '<@(remoting_webapp_js_ui_files)', 167 '<@(remoting_webapp_js_ui_files)',
163 '<@(remoting_webapp_js_ui_host_control_files)', 168 '<@(remoting_webapp_js_ui_host_control_files)',
164 '<@(remoting_webapp_js_ui_host_display_files)', 169 '<@(remoting_webapp_js_ui_host_display_files)',
165 '<@(remoting_webapp_js_wcs_container_files)', 170 '<@(remoting_webapp_js_wcs_container_files)',
166 # Uncomment this line to include browser test files in the web app 171 # Uncomment this line to include browser test files in the web app
167 # to expedite debugging or local development. 172 # to expedite debugging or local development.
168 '<@(remoting_webapp_js_browser_test_files)' 173 '<@(remoting_webapp_js_browser_test_files)'
169 ], 174 ],
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 'webapp/html/dialog_token_refresh_failed.html', 256 'webapp/html/dialog_token_refresh_failed.html',
252 'webapp/html/toolbar.html', 257 'webapp/html/toolbar.html',
253 'webapp/html/ui_header.html', 258 'webapp/html/ui_header.html',
254 'webapp/html/ui_it2me.html', 259 'webapp/html/ui_it2me.html',
255 'webapp/html/ui_me2me.html', 260 'webapp/html/ui_me2me.html',
256 'webapp/html/window_frame.html', 261 'webapp/html/window_frame.html',
257 ], 262 ],
258 263
259 }, 264 },
260 } 265 }
OLDNEW
« no previous file with comments | « no previous file | remoting/webapp/cast_extension_handler.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698