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

Side by Side Diff: remoting/remoting_webapp_files.gypi

Issue 840023004: Implement mocks for identity and host-list, add a browser test to test the app in various failure m… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 11 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
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 20 matching lines...) Expand all
31 'webapp/crd/js/third_party_host_permissions.js', 31 'webapp/crd/js/third_party_host_permissions.js',
32 'webapp/crd/js/third_party_token_fetcher.js', 32 'webapp/crd/js/third_party_token_fetcher.js',
33 ], 33 ],
34 # Auth (Google account) JavaScript files. 34 # Auth (Google account) JavaScript files.
35 'remoting_webapp_js_auth_google_files': [ 35 'remoting_webapp_js_auth_google_files': [
36 'webapp/base/js/auth_dialog.js', 36 'webapp/base/js/auth_dialog.js',
37 'webapp/base/js/auth_init.js', 37 'webapp/base/js/auth_init.js',
38 'webapp/crd/js/identity.js', 38 'webapp/crd/js/identity.js',
39 'webapp/crd/js/oauth2.js', 39 'webapp/crd/js/oauth2.js',
40 'webapp/crd/js/oauth2_api.js', 40 'webapp/crd/js/oauth2_api.js',
41 'webapp/crd/js/oauth2_api_impl.js',
41 ], 42 ],
42 # Client JavaScript files. 43 # Client JavaScript files.
43 'remoting_webapp_js_client_files': [ 44 'remoting_webapp_js_client_files': [
44 'webapp/crd/js/client_plugin.js', 45 'webapp/crd/js/client_plugin.js',
45 'webapp/crd/js/client_plugin_impl.js', 46 'webapp/crd/js/client_plugin_impl.js',
46 # TODO(garykac) For client_screen: 47 # TODO(garykac) For client_screen:
47 # * Split out pin/access code stuff into separate file. 48 # * Split out pin/access code stuff into separate file.
48 # * Move client logic into session_connector 49 # * Move client logic into session_connector
49 'webapp/crd/js/client_screen.js', 50 'webapp/crd/js/client_screen.js',
50 'webapp/crd/js/client_session.js', 51 'webapp/crd/js/client_session.js',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'webapp/crd/js/host_setup_dialog.js', 84 'webapp/crd/js/host_setup_dialog.js',
84 'webapp/crd/js/host_install_dialog.js', 85 'webapp/crd/js/host_install_dialog.js',
85 'webapp/crd/js/host_installer.js', 86 'webapp/crd/js/host_installer.js',
86 'webapp/crd/js/it2me_host_facade.js', 87 'webapp/crd/js/it2me_host_facade.js',
87 'webapp/crd/js/paired_client_manager.js', 88 'webapp/crd/js/paired_client_manager.js',
88 ], 89 ],
89 # Files for displaying (in the client) info about available hosts. 90 # Files for displaying (in the client) info about available hosts.
90 'remoting_webapp_js_host_display_files': [ 91 'remoting_webapp_js_host_display_files': [
91 'webapp/crd/js/host_list.js', 92 'webapp/crd/js/host_list.js',
92 'webapp/crd/js/host_list_api.js', 93 'webapp/crd/js/host_list_api.js',
94 'webapp/crd/js/host_list_api_impl.js',
93 'webapp/crd/js/host_table_entry.js', 95 'webapp/crd/js/host_table_entry.js',
94 ], 96 ],
95 # Logging and stats JavaScript files. 97 # Logging and stats JavaScript files.
96 'remoting_webapp_js_logging_files': [ 98 'remoting_webapp_js_logging_files': [
97 'webapp/crd/js/format_iq.js', 99 'webapp/crd/js/format_iq.js',
98 'webapp/crd/js/log_to_server.js', 100 'webapp/crd/js/log_to_server.js',
99 'webapp/crd/js/server_log_entry.js', 101 'webapp/crd/js/server_log_entry.js',
100 'webapp/crd/js/stats_accumulator.js', 102 'webapp/crd/js/stats_accumulator.js',
101 ], 103 ],
102 # UI JavaScript files. 104 # UI JavaScript files.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 'remoting_webapp_js_cast_extension_files': [ 141 'remoting_webapp_js_cast_extension_files': [
140 'webapp/crd/js/cast_extension_handler.js', 142 'webapp/crd/js/cast_extension_handler.js',
141 ], 143 ],
142 # browser test JavaScript files. 144 # browser test JavaScript files.
143 'remoting_webapp_js_browser_test_files': [ 145 'remoting_webapp_js_browser_test_files': [
144 'webapp/browser_test/browser_test.js', 146 'webapp/browser_test/browser_test.js',
145 'webapp/browser_test/bump_scroll_browser_test.js', 147 'webapp/browser_test/bump_scroll_browser_test.js',
146 'webapp/browser_test/cancel_pin_browser_test.js', 148 'webapp/browser_test/cancel_pin_browser_test.js',
147 'webapp/browser_test/invalid_pin_browser_test.js', 149 'webapp/browser_test/invalid_pin_browser_test.js',
148 'webapp/browser_test/mock_client_plugin.js', 150 'webapp/browser_test/mock_client_plugin.js',
151 'webapp/browser_test/mock_host_list_api.js',
152 'webapp/browser_test/mock_identity.js',
153 'webapp/browser_test/mock_oauth2_api.js',
149 'webapp/browser_test/mock_session_connector.js', 154 'webapp/browser_test/mock_session_connector.js',
150 'webapp/browser_test/mock_signal_strategy.js', 155 'webapp/browser_test/mock_signal_strategy.js',
151 'webapp/browser_test/scrollbar_browser_test.js', 156 'webapp/browser_test/scrollbar_browser_test.js',
157 'webapp/browser_test/timeout_waiter.js',
158 'webapp/browser_test/unauthenticated_browser_test.js',
152 'webapp/browser_test/update_pin_browser_test.js', 159 'webapp/browser_test/update_pin_browser_test.js',
153 ], 160 ],
154 # These product files are excluded from our JavaScript unittest 161 # These product files are excluded from our JavaScript unittest
155 'remoting_webapp_unittest_exclude_files': [ 162 'remoting_webapp_unittest_exclude_files': [
156 # background.js is where the onLoad handler is defined, which 163 # background.js is where the onLoad handler is defined, which
157 # makes it the entry point of the background page. 164 # makes it the entry point of the background page.
158 'webapp/crd/js/background.js', 165 'webapp/crd/js/background.js',
159 ], 166 ],
160 # The unit test cases for the webapp 167 # The unit test cases for the webapp
161 'remoting_webapp_unittest_js_files': [ 168 'remoting_webapp_unittest_js_files': [
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 'webapp/crd/html/dialog_token_refresh_failed.html', 335 'webapp/crd/html/dialog_token_refresh_failed.html',
329 'webapp/crd/html/toolbar.html', 336 'webapp/crd/html/toolbar.html',
330 'webapp/crd/html/ui_header.html', 337 'webapp/crd/html/ui_header.html',
331 'webapp/crd/html/ui_it2me.html', 338 'webapp/crd/html/ui_it2me.html',
332 'webapp/crd/html/ui_me2me.html', 339 'webapp/crd/html/ui_me2me.html',
333 'webapp/crd/html/window_frame.html', 340 'webapp/crd/html/window_frame.html',
334 ], 341 ],
335 342
336 }, 343 },
337 } 344 }
OLDNEW
« no previous file with comments | « chrome/test/remoting/unauthenticated_browsertest.cc ('k') | remoting/webapp/browser_test/browser_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698