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

Unified Diff: services/js/BUILD.gn

Issue 767323002: Mojo JS Bindings: restore the ServiceProvider class, add an application test (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Removed an extra include Created 6 years 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 side-by-side diff with in-line comments
Download patch
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",
+ ]
+}
+

Powered by Google App Engine
This is Rietveld 408576698