Index: services/js/BUILD.gn |
diff --git a/services/js/BUILD.gn b/services/js/BUILD.gn |
index 3e30479bd91cb69c9f1e9dd9693ff609d6d091bb..8f1fe2dc362c6d24dcbb1120888c76d07e4fd750 100644 |
--- a/services/js/BUILD.gn |
+++ b/services/js/BUILD.gn |
@@ -21,8 +21,8 @@ mojo_native_application("js_content_handler") { |
"js_app_runner_delegate.h", |
"js_app_shell.cc", |
"js_app_shell.h", |
- "mojo_bridge_module.cc", |
- "mojo_bridge_module.h", |
+ "js_app_bridge_module.cc", |
+ "js_app_bridge_module.h", |
] |
deps = [ |
@@ -55,3 +55,22 @@ test("js_services_unittests") { |
"//services/js/modules/clock/test", |
] |
} |
+ |
+mojo_native_application("js_apptests") { |
+ testonly = true |
+ |
+ sources = [ |
+ "js_apptests.cc", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//mojo/public/c/system:for_shared_library", |
+ "//mojo/application", |
+ "//mojo/application:test_support", |
+ "//mojo/public/cpp/bindings", |
+ "//mojo/public/cpp/system", |
+ "//services/js/test:echo_service", |
+ ] |
+} |
+ |