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

Side by Side 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: 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("../../../mojo_application.gni") 5 import("../../../mojo_application.gni")
6 6
7 source_set("tests") { 7 source_set("tests") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
(...skipping 11 matching lines...) Expand all
22 "container_test_util.h", 22 "container_test_util.h",
23 "equals_unittest.cc", 23 "equals_unittest.cc",
24 "handle_passing_unittest.cc", 24 "handle_passing_unittest.cc",
25 "interface_ptr_unittest.cc", 25 "interface_ptr_unittest.cc",
26 "macros_unittest.cc", 26 "macros_unittest.cc",
27 "map_unittest.cc", 27 "map_unittest.cc",
28 "message_queue.cc", 28 "message_queue.cc",
29 "message_queue.h", 29 "message_queue.h",
30 "multiplex_router_unittest.cc", 30 "multiplex_router_unittest.cc",
31 "pickle_unittest.cc", 31 "pickle_unittest.cc",
32 "pickled_struct_blink.cc",
33 "pickled_struct_blink.h",
34 "pickled_struct_chromium.cc",
35 "pickled_struct_chromium.h",
36 "rect_blink.h",
37 "rect_blink_traits.h",
38 "rect_chromium.h",
39 "rect_chromium_traits.h",
40 "request_response_unittest.cc", 32 "request_response_unittest.cc",
41 "router_test_util.cc", 33 "router_test_util.cc",
42 "router_test_util.h", 34 "router_test_util.h",
43 "router_unittest.cc", 35 "router_unittest.cc",
44 "sample_service_unittest.cc", 36 "sample_service_unittest.cc",
45 "serialization_warning_unittest.cc", 37 "serialization_warning_unittest.cc",
46 "stl_converters_unittest.cc", 38 "stl_converters_unittest.cc",
47 "string_unittest.cc", 39 "string_unittest.cc",
48 "struct_traits_unittest.cc", 40 "struct_traits_unittest.cc",
49 "struct_unittest.cc", 41 "struct_unittest.cc",
50 "struct_with_traits_impl.cc", 42 "struct_with_traits_impl.cc",
51 "struct_with_traits_impl.h", 43 "struct_with_traits_impl.h",
52 "struct_with_traits_impl_traits.cc",
53 "struct_with_traits_impl_traits.h",
54 "sync_method_unittest.cc", 44 "sync_method_unittest.cc",
55 "type_conversion_unittest.cc", 45 "type_conversion_unittest.cc",
56 "union_unittest.cc", 46 "union_unittest.cc",
57 "validation_unittest.cc", 47 "validation_unittest.cc",
58 "variant_test_util.h", 48 "variant_test_util.h",
59 ] 49 ]
60 50
61 deps = [ 51 deps = [
62 ":mojo_public_bindings_test_utils", 52 ":mojo_public_bindings_test_utils",
63 "//mojo/message_pump", 53 "//mojo/message_pump",
64 "//mojo/public/cpp/bindings", 54 "//mojo/public/cpp/bindings",
65 "//mojo/public/cpp/bindings:callback", 55 "//mojo/public/cpp/bindings:callback",
66 "//mojo/public/cpp/system", 56 "//mojo/public/cpp/system",
67 "//mojo/public/cpp/test_support:test_utils", 57 "//mojo/public/cpp/test_support:test_utils",
68 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", 58 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces",
69 "//mojo/public/interfaces/bindings/tests:test_interfaces", 59 "//mojo/public/interfaces/bindings/tests:test_interfaces",
70 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink",
71 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium",
72 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", 60 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental",
61 "//mojo/public/interfaces/bindings/tests:test_interfaces_wtf",
73 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", 62 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces",
74 "//mojo/public/interfaces/bindings/tests:test_variant",
75 "//testing/gtest", 63 "//testing/gtest",
76 ] 64 ]
77 } 65 }
78 66
79 source_set("for_blink_tests") { 67 source_set("for_blink_tests") {
80 testonly = true 68 testonly = true
81 69
82 sources = [ 70 sources = [
83 "array_common_test.h", 71 "array_common_test.h",
84 "container_test_util.cc", 72 "container_test_util.cc",
85 "container_test_util.h", 73 "container_test_util.h",
86 "variant_test_util.h", 74 "variant_test_util.h",
87 "wtf_array_unittest.cc", 75 "wtf_array_unittest.cc",
88 "wtf_types_unittest.cc", 76 "wtf_types_unittest.cc",
89 ] 77 ]
90 78
91 deps = [ 79 deps = [
92 "//mojo/public/cpp/bindings", 80 "//mojo/public/cpp/bindings",
93 "//mojo/public/cpp/bindings:callback", 81 "//mojo/public/cpp/bindings:callback",
94 "//mojo/public/cpp/system", 82 "//mojo/public/cpp/system",
95 "//mojo/public/interfaces/bindings/tests:test_interfaces", 83 "//mojo/public/interfaces/bindings/tests:test_interfaces",
96 "//mojo/public/interfaces/bindings/tests:test_wtf_types", 84 "//mojo/public/interfaces/bindings/tests:test_wtf_types",
97 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", 85 "//mojo/public/interfaces/bindings/tests:test_wtf_types_wtf",
98 "//testing/gtest", 86 "//testing/gtest",
99 ] 87 ]
100 } 88 }
101 89
102 source_set("perftests") { 90 source_set("perftests") {
103 testonly = true 91 testonly = true
104 92
105 sources = [ 93 sources = [
106 "bindings_perftest.cc", 94 "bindings_perftest.cc",
107 "e2e_perftest.cc", 95 "e2e_perftest.cc",
(...skipping 15 matching lines...) Expand all
123 source_set("mojo_public_bindings_test_utils") { 111 source_set("mojo_public_bindings_test_utils") {
124 sources = [ 112 sources = [
125 "validation_test_input_parser.cc", 113 "validation_test_input_parser.cc",
126 "validation_test_input_parser.h", 114 "validation_test_input_parser.h",
127 ] 115 ]
128 116
129 deps = [ 117 deps = [
130 "//mojo/public/c/system", 118 "//mojo/public/c/system",
131 ] 119 ]
132 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698