| OLD | NEW |
| 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', |
| 11 ], | 11 ], |
| 12 | 12 |
| 13 # Jscompile proto files. | 13 # Jscompile proto files. |
| 14 # These provide type information for jscompile. | 14 # These provide type information for jscompile. |
| 15 'remoting_webapp_js_proto_files': [ | 15 'remoting_webapp_js_proto_files': [ |
| 16 'webapp/js_proto/chrome_proto.js', | 16 'webapp/js_proto/chrome_proto.js', |
| 17 'webapp/js_proto/console_proto.js', | |
| 18 'webapp/js_proto/dom_proto.js', | 17 'webapp/js_proto/dom_proto.js', |
| 19 'webapp/js_proto/remoting_proto.js', | 18 'webapp/js_proto/remoting_proto.js', |
| 20 ], | 19 ], |
| 21 | 20 |
| 22 # Auth (apps v1) JavaScript files. | 21 # Auth (apps v1) JavaScript files. |
| 23 # These files aren't included directly from main.html. They are | 22 # These files aren't included directly from main.html. They are |
| 24 # referenced from the manifest.json file (appsv1 only). | 23 # referenced from the manifest.json file (appsv1 only). |
| 25 'remoting_webapp_js_auth_v1_files': [ | 24 'remoting_webapp_js_auth_v1_files': [ |
| 26 'webapp/crd/js/cs_third_party_auth_trampoline.js', # client to host | 25 'webapp/crd/js/cs_third_party_auth_trampoline.js', # client to host |
| 27 'webapp/crd/js/cs_oauth2_trampoline.js', # Google account | 26 'webapp/crd/js/cs_oauth2_trampoline.js', # Google account |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 'webapp/browser_test/update_pin_browser_test.js', | 159 'webapp/browser_test/update_pin_browser_test.js', |
| 161 ], | 160 ], |
| 162 # These product files are excluded from our JavaScript unittest | 161 # These product files are excluded from our JavaScript unittest |
| 163 'remoting_webapp_unittest_exclude_files': [ | 162 'remoting_webapp_unittest_exclude_files': [ |
| 164 # background.js is where the onLoad handler is defined, which | 163 # background.js is where the onLoad handler is defined, which |
| 165 # makes it the entry point of the background page. | 164 # makes it the entry point of the background page. |
| 166 'webapp/crd/js/background.js', | 165 'webapp/crd/js/background.js', |
| 167 ], | 166 ], |
| 168 # The unit test cases for the webapp | 167 # The unit test cases for the webapp |
| 169 'remoting_webapp_unittest_js_files': [ | 168 'remoting_webapp_unittest_js_files': [ |
| 169 'webapp/unittests/chrome_mocks.js', |
| 170 'webapp/js_proto/chrome_proto.js', | 170 'webapp/js_proto/chrome_proto.js', |
| 171 'webapp/unittests/chrome_mocks.js', | |
| 172 'webapp/unittests/base_unittest.js', | 171 'webapp/unittests/base_unittest.js', |
| 173 'webapp/unittests/it2me_helpee_channel_unittest.js', | 172 'webapp/unittests/it2me_helpee_channel_unittest.js', |
| 174 'webapp/unittests/it2me_helper_channel_unittest.js', | 173 'webapp/unittests/it2me_helper_channel_unittest.js', |
| 175 'webapp/unittests/it2me_service_unittest.js', | 174 'webapp/unittests/it2me_service_unittest.js', |
| 176 'webapp/unittests/l10n_unittest.js', | 175 'webapp/unittests/l10n_unittest.js', |
| 177 'webapp/unittests/menu_button_unittest.js', | 176 'webapp/unittests/menu_button_unittest.js', |
| 178 'webapp/unittests/xmpp_connection_unittest.js', | 177 'webapp/unittests/xmpp_connection_unittest.js', |
| 179 'webapp/unittests/xmpp_login_handler_unittest.js', | 178 'webapp/unittests/xmpp_login_handler_unittest.js', |
| 180 'webapp/unittests/xmpp_stream_parser_unittest.js', | 179 'webapp/unittests/xmpp_stream_parser_unittest.js', |
| 181 ], | 180 ], |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 'webapp/crd/html/dialog_token_refresh_failed.html', | 335 'webapp/crd/html/dialog_token_refresh_failed.html', |
| 337 'webapp/crd/html/toolbar.html', | 336 'webapp/crd/html/toolbar.html', |
| 338 'webapp/crd/html/ui_header.html', | 337 'webapp/crd/html/ui_header.html', |
| 339 'webapp/crd/html/ui_it2me.html', | 338 'webapp/crd/html/ui_it2me.html', |
| 340 'webapp/crd/html/ui_me2me.html', | 339 'webapp/crd/html/ui_me2me.html', |
| 341 'webapp/crd/html/window_frame.html', | 340 'webapp/crd/html/window_frame.html', |
| 342 ], | 341 ], |
| 343 | 342 |
| 344 }, | 343 }, |
| 345 } | 344 } |
| OLD | NEW |