Index: third_party/mojo/src/mojo/public/cpp/bindings/tests/BUILD.gn |
diff --git a/third_party/mojo/src/mojo/public/cpp/bindings/tests/BUILD.gn b/third_party/mojo/src/mojo/public/cpp/bindings/tests/BUILD.gn |
index bb94bc2238cc37aa7bfd619558dfd054aef0f97b..d087cbf876b669858fdfccf87d765043f84224c6 100644 |
--- a/third_party/mojo/src/mojo/public/cpp/bindings/tests/BUILD.gn |
+++ b/third_party/mojo/src/mojo/public/cpp/bindings/tests/BUILD.gn |
@@ -23,6 +23,8 @@ mojo_sdk_source_set("tests") { |
"handle_passing_unittest.cc", |
"interface_ptr_unittest.cc", |
"map_unittest.cc", |
+ "message_queue.cc", |
+ "message_queue.h", |
"request_response_unittest.cc", |
"router_unittest.cc", |
"sample_service_unittest.cc", |
@@ -51,6 +53,28 @@ mojo_sdk_source_set("tests") { |
] |
} |
+mojo_sdk_source_set("perftests") { |
+ testonly = true |
+ |
+ sources = [ |
+ "bindings_perftest.cc", |
+ ] |
+ |
+ deps = [ |
+ "//testing/gtest", |
+ ] |
+ |
+ mojo_sdk_deps = [ |
+ "mojo/public/cpp/bindings", |
+ "mojo/public/cpp/bindings:callback", |
+ "mojo/public/cpp/environment:standalone", |
+ "mojo/public/cpp/system", |
+ "mojo/public/cpp/test_support:test_utils", |
+ "mojo/public/cpp/utility", |
+ "mojo/public/interfaces/bindings/tests:test_interfaces", |
+ ] |
+} |
+ |
mojo_sdk_source_set("mojo_public_bindings_test_utils") { |
sources = [ |
"validation_test_input_parser.cc", |