Index: mojo/services/test_service/BUILD.gn |
diff --git a/mojo/services/test_service/BUILD.gn b/mojo/services/test_service/BUILD.gn |
index 684826ff3682736ef730fd0dd0e3ab8bca9c1431..0d1d99c58547044b63eeee4a3ed19b34cd18d6c1 100644 |
--- a/mojo/services/test_service/BUILD.gn |
+++ b/mojo/services/test_service/BUILD.gn |
@@ -3,6 +3,7 @@ |
# found in the LICENSE file. |
import("//mojo/public/tools/bindings/mojom.gni") |
+import("//mojo/system.gni") |
# GYP version: mojo/mojo_services.gypi:mojo_test_service_bindings |
mojom("bindings") { |
@@ -11,3 +12,51 @@ mojom("bindings") { |
"test_service.mojom", |
] |
} |
+ |
+# GYP version: mojo/mojo_services.gypi:mojo_test_app |
+shared_library("mojo_test_app") { |
+ deps = [ |
+ ":bindings", |
+ "//base", |
+ "//mojo/public/cpp/application:main_standalone", |
+ "//mojo/public/cpp/application:standalone", |
+ "//mojo/public/cpp/environment:standalone", |
+ "//mojo/public/cpp/utility", |
+ ] |
+ deps += mojo_system_for_shared_library |
+ |
+ sources = [ |
+ "test_request_tracker_client_impl.cc", |
+ "test_request_tracker_client_impl.h", |
+ "test_service_application.cc", |
+ "test_service_application.h", |
+ "test_service_impl.cc", |
+ "test_service_impl.h", |
+ "test_time_service_impl.cc", |
+ "test_time_service_impl.h", |
+ ] |
+} |
+ |
+# GYP version: //mojo/mojo_services.gypi:mojo_test_request_tracker_app |
+shared_library("mojo_test_request_tracker_app") { |
+ deps = [ |
+ ":bindings", |
+ "//base", |
+ "//mojo/public/cpp/application:main_standalone", |
+ "//mojo/public/cpp/application:standalone", |
+ "//mojo/public/cpp/environment:standalone", |
+ "//mojo/public/cpp/utility", |
+ ] |
+ deps += mojo_system_for_shared_library |
+ |
+ sources = [ |
+ "test_request_tracker_client_impl.cc", |
+ "test_request_tracker_client_impl.h", |
+ "test_request_tracker_application.cc", |
+ "test_request_tracker_application.h", |
+ "test_time_service_impl.cc", |
+ "test_time_service_impl.h", |
+ "test_request_tracker_impl.cc", |
+ "test_request_tracker_impl.h", |
+ ] |
+} |