| 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 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 group("js") { | 8 group("js") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":js_content_handler", | 10 ":js_content_handler", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "//mojo/services/content_handler/interfaces", | 45 "//mojo/services/content_handler/interfaces", |
| 46 "//mojo/services/network/interfaces", | 46 "//mojo/services/network/interfaces", |
| 47 "//services/js/modules/clock", | 47 "//services/js/modules/clock", |
| 48 "//services/js/modules/gl", | 48 "//services/js/modules/gl", |
| 49 "//services/js/system", | 49 "//services/js/system", |
| 50 ] | 50 ] |
| 51 } | 51 } |
| 52 | 52 |
| 53 test("js_services_unittests") { | 53 test("js_services_unittests") { |
| 54 deps = [ | 54 deps = [ |
| 55 "//base", | |
| 56 "//gin:gin_test", | 55 "//gin:gin_test", |
| 57 "//mojo/edk/test:run_all_unittests", | 56 "//mojo/edk/test:run_all_unittests", |
| 58 "//mojo/edk/test:test_support", | |
| 59 "//mojo/public/cpp/utility", | |
| 60 "//mojo/environment:chromium", | 57 "//mojo/environment:chromium", |
| 61 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 58 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 62 "//services/js/modules/clock/test", | 59 "//services/js/modules/clock/test", |
| 63 "//services/js/system", | 60 "//services/js/system", |
| 64 ] | 61 ] |
| 65 } | 62 } |
| 66 | 63 |
| 67 mojo_native_application("js_apptests") { | 64 mojo_native_application("js_apptests") { |
| 68 testonly = true | 65 testonly = true |
| 69 | 66 |
| 70 sources = [ | 67 sources = [ |
| 71 "echo_apptest.cc", | 68 "echo_apptest.cc", |
| 72 "network_apptest.cc", | 69 "network_apptest.cc", |
| 73 "pingpong_apptest.cc", | 70 "pingpong_apptest.cc", |
| 74 ] | 71 ] |
| 75 | 72 |
| 76 deps = [ | 73 deps = [ |
| 77 "//base", | 74 "//base", |
| 78 "//mojo/public/cpp/bindings", | 75 "//mojo/public/cpp/bindings", |
| 79 "//mojo/public/cpp/system", | 76 "//mojo/public/cpp/system", |
| 80 "//services/js/test:echo_service", | 77 "//services/js/test:echo_service", |
| 81 "//services/js/test:js_application_test_base", | 78 "//services/js/test:js_application_test_base", |
| 82 "//services/js/test:network_test_service", | 79 "//services/js/test:network_test_service", |
| 83 "//services/js/test:pingpong_service", | 80 "//services/js/test:pingpong_service", |
| 84 ] | 81 ] |
| 85 } | 82 } |
| OLD | NEW |