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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 ], | 129 ], |
130 # These product files are excluded from our JavaScript unittest | 130 # These product files are excluded from our JavaScript unittest |
131 'remoting_webapp_unittest_exclude_files': [ | 131 'remoting_webapp_unittest_exclude_files': [ |
132 # event_handlers.js is where the onLoad handler is defined, which | 132 # event_handlers.js is where the onLoad handler is defined, which |
133 # makes it the entry point of the webapp. | 133 # makes it the entry point of the webapp. |
134 'webapp/event_handlers.js', | 134 'webapp/event_handlers.js', |
135 ], | 135 ], |
136 # The unit test cases for the webapp | 136 # The unit test cases for the webapp |
137 'remoting_webapp_unittest_cases': [ | 137 'remoting_webapp_unittest_cases': [ |
138 'webapp/unittests/base_unittest.js', | 138 'webapp/unittests/base_unittest.js', |
| 139 'webapp/unittests/menu_button_unittest.js', |
| 140 ], |
| 141 'remoting_webapp_unittest_additional_files': [ |
| 142 'webapp/menu_button.css', |
139 ], | 143 ], |
140 'remoting_webapp_unittest_template_main': | 144 'remoting_webapp_unittest_template_main': |
141 'webapp/html/template_unittest.html', | 145 'webapp/html/template_unittest.html', |
142 | 146 |
143 # The JavaScript files required by main.html. | 147 # The JavaScript files required by main.html. |
144 'remoting_webapp_main_html_js_files': [ | 148 'remoting_webapp_main_html_js_files': [ |
145 # Include the core files first as it is required by the other files. | 149 # Include the core files first as it is required by the other files. |
146 # Otherwise, Jscompile will complain. | 150 # Otherwise, Jscompile will complain. |
147 '<@(remoting_webapp_js_core_files)', | 151 '<@(remoting_webapp_js_core_files)', |
148 '<@(remoting_webapp_js_auth_client2host_files)', | 152 '<@(remoting_webapp_js_auth_client2host_files)', |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 'webapp/html/dialog_token_refresh_failed.html', | 246 'webapp/html/dialog_token_refresh_failed.html', |
243 'webapp/html/toolbar.html', | 247 'webapp/html/toolbar.html', |
244 'webapp/html/ui_header.html', | 248 'webapp/html/ui_header.html', |
245 'webapp/html/ui_it2me.html', | 249 'webapp/html/ui_it2me.html', |
246 'webapp/html/ui_me2me.html', | 250 'webapp/html/ui_me2me.html', |
247 'webapp/html/window_frame.html', | 251 'webapp/html/window_frame.html', |
248 ], | 252 ], |
249 | 253 |
250 }, | 254 }, |
251 } | 255 } |
OLD | NEW |