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 | 7 |
8 # Jscompile proto files. | 8 # Jscompile proto files. |
9 # These provide type information for jscompile. | 9 # These provide type information for jscompile. |
10 'remoting_webapp_js_proto_files': [ | 10 'remoting_webapp_js_proto_files': [ |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 'webapp/base/js/base_unittest.js', | 68 'webapp/base/js/base_unittest.js', |
69 'webapp/base/js/base_event_hook_unittest.js', | 69 'webapp/base/js/base_event_hook_unittest.js', |
70 'webapp/base/js/base_inherits_unittest.js', | 70 'webapp/base/js/base_inherits_unittest.js', |
71 'webapp/base/js/ipc_unittest.js', | 71 'webapp/base/js/ipc_unittest.js', |
72 'webapp/crd/js/apps_v2_migration_unittest.js', | 72 'webapp/crd/js/apps_v2_migration_unittest.js', |
73 'webapp/crd/js/desktop_viewport_unittest.js', | 73 'webapp/crd/js/desktop_viewport_unittest.js', |
74 'webapp/crd/js/dns_blackhole_checker_unittest.js', | 74 'webapp/crd/js/dns_blackhole_checker_unittest.js', |
75 'webapp/crd/js/error_unittest.js', | 75 'webapp/crd/js/error_unittest.js', |
76 'webapp/crd/js/fallback_signal_strategy_unittest.js', | 76 'webapp/crd/js/fallback_signal_strategy_unittest.js', |
77 'webapp/crd/js/gcd_client_unittest.js', | 77 'webapp/crd/js/gcd_client_unittest.js', |
| 78 'webapp/crd/js/gcd_client_with_mock_xhr_unittest.js', |
78 'webapp/crd/js/host_table_entry_unittest.js', | 79 'webapp/crd/js/host_table_entry_unittest.js', |
79 'webapp/crd/js/identity_unittest.js', | 80 'webapp/crd/js/identity_unittest.js', |
80 'webapp/crd/js/l10n_unittest.js', | 81 'webapp/crd/js/l10n_unittest.js', |
81 'webapp/crd/js/menu_button_unittest.js', | 82 'webapp/crd/js/menu_button_unittest.js', |
| 83 'webapp/crd/js/mock_xhr_unittest.js', |
82 'webapp/crd/js/typecheck_unittest.js', | 84 'webapp/crd/js/typecheck_unittest.js', |
83 'webapp/crd/js/xhr_unittest.js', | 85 'webapp/crd/js/xhr_unittest.js', |
84 'webapp/crd/js/xmpp_connection_unittest.js', | 86 'webapp/crd/js/xmpp_connection_unittest.js', |
85 'webapp/crd/js/xmpp_login_handler_unittest.js', | 87 'webapp/crd/js/xmpp_login_handler_unittest.js', |
86 'webapp/crd/js/xmpp_stream_parser_unittest.js', | 88 'webapp/crd/js/xmpp_stream_parser_unittest.js', |
87 ], | 89 ], |
88 'remoting_webapp_unittests_js_mock_files': [ | 90 'remoting_webapp_unittests_js_mock_files': [ |
89 # Some proto files can be repurposed as simple mocks for the unittests. | 91 # Some proto files can be repurposed as simple mocks for the unittests. |
90 # Note that some defs in chrome_proto are overwritten by chrome_mocks. | 92 # Note that some defs in chrome_proto are overwritten by chrome_mocks. |
91 'webapp/crd/js/mock_signal_strategy.js', | 93 'webapp/crd/js/mock_signal_strategy.js', |
92 'webapp/js_proto/chrome_proto.js', | 94 'webapp/js_proto/chrome_proto.js', |
93 'webapp/js_proto/chrome_mocks.js', | 95 'webapp/js_proto/chrome_mocks.js', |
94 'webapp/unittests/sinon_helpers.js', | 96 'webapp/unittests/sinon_helpers.js', |
| 97 'webapp/crd/js/mock_xhr.js', |
95 ], | 98 ], |
96 # Prototypes for objects that are not mocked. | 99 # Prototypes for objects that are not mocked. |
97 'remoting_webapp_unittests_js_proto_files': [ | 100 'remoting_webapp_unittests_js_proto_files': [ |
98 'webapp/js_proto/chrome_cast_proto.js', | 101 'webapp/js_proto/chrome_cast_proto.js', |
99 'webapp/js_proto/dom_proto.js', | 102 'webapp/js_proto/dom_proto.js', |
100 'webapp/js_proto/remoting_proto.js', | 103 'webapp/js_proto/remoting_proto.js', |
101 'webapp/js_proto/qunit_proto.js', | 104 'webapp/js_proto/qunit_proto.js', |
102 'webapp/js_proto/sinon_proto.js', | 105 'webapp/js_proto/sinon_proto.js', |
103 ], | 106 ], |
104 'remoting_webapp_unittests_all_js_files': [ | 107 'remoting_webapp_unittests_all_js_files': [ |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 '<(remoting_webapp_template_background)', | 465 '<(remoting_webapp_template_background)', |
463 '<(remoting_webapp_template_main)', | 466 '<(remoting_webapp_template_main)', |
464 '<(remoting_webapp_template_message_window)', | 467 '<(remoting_webapp_template_message_window)', |
465 '<(remoting_webapp_template_wcs_sandbox)', | 468 '<(remoting_webapp_template_wcs_sandbox)', |
466 '<@(remoting_webapp_template_files)', | 469 '<@(remoting_webapp_template_files)', |
467 '<@(remoting_webapp_crd_js_files)', | 470 '<@(remoting_webapp_crd_js_files)', |
468 ], | 471 ], |
469 | 472 |
470 }, | 473 }, |
471 } | 474 } |
OLD | NEW |