| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 'webapp/unittests/xmpp_login_handler_unittest.js', | 77 'webapp/unittests/xmpp_login_handler_unittest.js', |
| 78 'webapp/unittests/xmpp_stream_parser_unittest.js', | 78 'webapp/unittests/xmpp_stream_parser_unittest.js', |
| 79 ], | 79 ], |
| 80 'remoting_webapp_unittest_js_mock_files': [ | 80 'remoting_webapp_unittest_js_mock_files': [ |
| 81 # Some proto files can be repurposed as simple mocks for the unittests. | 81 # Some proto files can be repurposed as simple mocks for the unittests. |
| 82 # Note that some defs in chrome_proto are overwritten by chrome_mocks. | 82 # Note that some defs in chrome_proto are overwritten by chrome_mocks. |
| 83 'webapp/js_proto/chrome_proto.js', | 83 'webapp/js_proto/chrome_proto.js', |
| 84 'webapp/unittests/chrome_mocks.js', | 84 'webapp/unittests/chrome_mocks.js', |
| 85 'webapp/unittests/mock_signal_strategy.js', | 85 'webapp/unittests/mock_signal_strategy.js', |
| 86 'webapp/unittests/sinon_helpers.js', | 86 'webapp/unittests/sinon_helpers.js', |
| 87 'webapp/unittests/test_start.js', | |
| 88 ], | 87 ], |
| 89 # Prototypes for objects that are not mocked. | 88 # Prototypes for objects that are not mocked. |
| 90 'remoting_webapp_unittest_js_proto_files': [ | 89 'remoting_webapp_unittest_js_proto_files': [ |
| 91 'webapp/js_proto/chrome_cast_proto.js', | 90 'webapp/js_proto/chrome_cast_proto.js', |
| 92 'webapp/js_proto/dom_proto.js', | 91 'webapp/js_proto/dom_proto.js', |
| 93 'webapp/js_proto/remoting_proto.js', | 92 'webapp/js_proto/remoting_proto.js', |
| 94 'webapp/js_proto/qunit_proto.js', | 93 'webapp/js_proto/qunit_proto.js', |
| 95 'webapp/js_proto/sinon_proto.js', | 94 'webapp/js_proto/sinon_proto.js', |
| 96 'webapp/js_proto/sinon_stub_proto.js', | |
| 97 ], | 95 ], |
| 98 'remoting_webapp_unittest_all_js_files': [ | 96 'remoting_webapp_unittest_all_js_files': [ |
| 99 '<@(remoting_webapp_unittest_js_files)', | 97 '<@(remoting_webapp_unittest_js_files)', |
| 100 '<@(remoting_webapp_unittest_js_mock_files)', | 98 '<@(remoting_webapp_unittest_js_mock_files)', |
| 101 ], | 99 ], |
| 102 # All the files needed to run the unittests. | 100 # All the files needed to run the unittests. |
| 103 'remoting_webapp_unittest_all_files': [ | 101 'remoting_webapp_unittest_all_files': [ |
| 104 'webapp/crd/html/menu_button.css', | 102 'webapp/crd/html/menu_button.css', |
| 105 '<@(remoting_webapp_unittest_all_js_files)', | 103 '<@(remoting_webapp_unittest_all_js_files)', |
| 106 ], | 104 ], |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 '<(remoting_webapp_template_background)', | 447 '<(remoting_webapp_template_background)', |
| 450 '<(remoting_webapp_template_main)', | 448 '<(remoting_webapp_template_main)', |
| 451 '<(remoting_webapp_template_message_window)', | 449 '<(remoting_webapp_template_message_window)', |
| 452 '<(remoting_webapp_template_wcs_sandbox)', | 450 '<(remoting_webapp_template_wcs_sandbox)', |
| 453 '<@(remoting_webapp_template_files)', | 451 '<@(remoting_webapp_template_files)', |
| 454 '<@(remoting_webapp_crd_js_files)', | 452 '<@(remoting_webapp_crd_js_files)', |
| 455 ], | 453 ], |
| 456 | 454 |
| 457 }, | 455 }, |
| 458 } | 456 } |
| OLD | NEW |