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', |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 # cast extension handler JavaScript files. | 133 # cast extension handler JavaScript files. |
134 'remoting_webapp_js_cast_extension_files': [ | 134 'remoting_webapp_js_cast_extension_files': [ |
135 'webapp/cast_extension_handler.js', | 135 'webapp/cast_extension_handler.js', |
136 ], | 136 ], |
137 # browser test JavaScript files. | 137 # browser test JavaScript files. |
138 'remoting_webapp_js_browser_test_files': [ | 138 'remoting_webapp_js_browser_test_files': [ |
139 'webapp/browser_test/browser_test.js', | 139 'webapp/browser_test/browser_test.js', |
140 'webapp/browser_test/bump_scroll_browser_test.js', | 140 'webapp/browser_test/bump_scroll_browser_test.js', |
141 'webapp/browser_test/cancel_pin_browser_test.js', | 141 'webapp/browser_test/cancel_pin_browser_test.js', |
142 'webapp/browser_test/invalid_pin_browser_test.js', | 142 'webapp/browser_test/invalid_pin_browser_test.js', |
| 143 'webapp/browser_test/mock_client_plugin.js', |
| 144 'webapp/browser_test/mock_session_connector.js', |
| 145 'webapp/browser_test/mock_signal_strategy.js', |
143 'webapp/browser_test/scrollbar_browser_test.js', | 146 'webapp/browser_test/scrollbar_browser_test.js', |
144 'webapp/browser_test/update_pin_browser_test.js', | 147 'webapp/browser_test/update_pin_browser_test.js', |
145 ], | 148 ], |
146 # These product files are excluded from our JavaScript unittest | 149 # These product files are excluded from our JavaScript unittest |
147 'remoting_webapp_unittest_exclude_files': [ | 150 'remoting_webapp_unittest_exclude_files': [ |
148 # background.js is where the onLoad handler is defined, which | 151 # background.js is where the onLoad handler is defined, which |
149 # makes it the entry point of the background page. | 152 # makes it the entry point of the background page. |
150 'webapp/background/background.js', | 153 'webapp/background/background.js', |
151 # event_handlers.js is where the onLoad handler is defined, which | 154 # event_handlers.js is where the onLoad handler is defined, which |
152 # makes it the entry point of the webapp. | 155 # makes it the entry point of the webapp. |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 'webapp/html/dialog_token_refresh_failed.html', | 308 'webapp/html/dialog_token_refresh_failed.html', |
306 'webapp/html/toolbar.html', | 309 'webapp/html/toolbar.html', |
307 'webapp/html/ui_header.html', | 310 'webapp/html/ui_header.html', |
308 'webapp/html/ui_it2me.html', | 311 'webapp/html/ui_it2me.html', |
309 'webapp/html/ui_me2me.html', | 312 'webapp/html/ui_me2me.html', |
310 'webapp/html/window_frame.html', | 313 'webapp/html/window_frame.html', |
311 ], | 314 ], |
312 | 315 |
313 }, | 316 }, |
314 } | 317 } |
OLD | NEW |