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

Unified Diff: mojo/public/cpp/bindings/tests/BUILD.gn

Issue 1832703002: Mojo: Simplify typemap usage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-bindings-variant-import
Patch Set: add missing mash dependency Created 4 years, 8 months 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
« no previous file with comments | « mojo/public/cpp/bindings/BUILD.gn ('k') | mojo/public/cpp/bindings/tests/blink_typemaps.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/cpp/bindings/tests/BUILD.gn
diff --git a/mojo/public/cpp/bindings/tests/BUILD.gn b/mojo/public/cpp/bindings/tests/BUILD.gn
index 6aab2478f43e47adc8c800175c7ee0a39e6ecb03..2e073a45050d964a051c64746cb85e28f3a2b44b 100644
--- a/mojo/public/cpp/bindings/tests/BUILD.gn
+++ b/mojo/public/cpp/bindings/tests/BUILD.gn
@@ -28,14 +28,6 @@ source_set("tests") {
"message_queue.h",
"multiplex_router_unittest.cc",
"pickle_unittest.cc",
- "pickled_struct_blink.cc",
- "pickled_struct_blink.h",
- "pickled_struct_chromium.cc",
- "pickled_struct_chromium.h",
- "rect_blink.h",
- "rect_blink_traits.h",
- "rect_chromium.h",
- "rect_chromium_traits.h",
"request_response_unittest.cc",
"router_test_util.cc",
"router_test_util.h",
@@ -46,10 +38,6 @@ source_set("tests") {
"string_unittest.cc",
"struct_traits_unittest.cc",
"struct_unittest.cc",
- "struct_with_traits_impl.cc",
- "struct_with_traits_impl.h",
- "struct_with_traits_impl_traits.cc",
- "struct_with_traits_impl_traits.h",
"sync_method_unittest.cc",
"type_conversion_unittest.cc",
"union_unittest.cc",
@@ -66,11 +54,9 @@ source_set("tests") {
"//mojo/public/cpp/test_support:test_utils",
"//mojo/public/interfaces/bindings/tests:test_associated_interfaces",
"//mojo/public/interfaces/bindings/tests:test_interfaces",
- "//mojo/public/interfaces/bindings/tests:test_interfaces_blink",
- "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium",
"//mojo/public/interfaces/bindings/tests:test_interfaces_experimental",
+ "//mojo/public/interfaces/bindings/tests:test_interfaces_wtf",
"//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces",
- "//mojo/public/interfaces/bindings/tests:test_variant",
"//testing/gtest",
]
}
@@ -93,11 +79,22 @@ source_set("for_blink_tests") {
"//mojo/public/cpp/system",
"//mojo/public/interfaces/bindings/tests:test_interfaces",
"//mojo/public/interfaces/bindings/tests:test_wtf_types",
- "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink",
+ "//mojo/public/interfaces/bindings/tests:test_wtf_types_wtf",
"//testing/gtest",
]
}
+source_set("struct_with_traits_impl") {
+ sources = [
+ "struct_with_traits_impl.cc",
+ "struct_with_traits_impl.h",
+ ]
+
+ deps = [
+ "//base",
+ ]
+}
+
source_set("perftests") {
testonly = true
« no previous file with comments | « mojo/public/cpp/bindings/BUILD.gn ('k') | mojo/public/cpp/bindings/tests/blink_typemaps.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698