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

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",
51 "struct_with_traits_impl.h",
52 "struct_with_traits_impl_traits.cc",
53 "struct_with_traits_impl_traits.h",
54 "sync_method_unittest.cc", 42 "sync_method_unittest.cc",
55 "type_conversion_unittest.cc", 43 "type_conversion_unittest.cc",
56 "union_unittest.cc", 44 "union_unittest.cc",
57 "validation_unittest.cc", 45 "validation_unittest.cc",
58 "variant_test_util.h", 46 "variant_test_util.h",
59 ] 47 ]
60 48
61 deps = [ 49 deps = [
62 ":mojo_public_bindings_test_utils", 50 ":mojo_public_bindings_test_utils",
63 "//mojo/message_pump", 51 "//mojo/message_pump",
64 "//mojo/public/cpp/bindings", 52 "//mojo/public/cpp/bindings",
65 "//mojo/public/cpp/bindings:callback", 53 "//mojo/public/cpp/bindings:callback",
66 "//mojo/public/cpp/system", 54 "//mojo/public/cpp/system",
67 "//mojo/public/cpp/test_support:test_utils", 55 "//mojo/public/cpp/test_support:test_utils",
68 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", 56 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces",
69 "//mojo/public/interfaces/bindings/tests:test_interfaces", 57 "//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", 58 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental",
59 "//mojo/public/interfaces/bindings/tests:test_interfaces_wtf",
73 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", 60 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces",
74 "//mojo/public/interfaces/bindings/tests:test_variant",
75 "//testing/gtest", 61 "//testing/gtest",
76 ] 62 ]
77 } 63 }
78 64
79 source_set("for_blink_tests") { 65 source_set("for_blink_tests") {
80 testonly = true 66 testonly = true
81 67
82 sources = [ 68 sources = [
83 "array_common_test.h", 69 "array_common_test.h",
84 "container_test_util.cc", 70 "container_test_util.cc",
85 "container_test_util.h", 71 "container_test_util.h",
86 "variant_test_util.h", 72 "variant_test_util.h",
87 "wtf_array_unittest.cc", 73 "wtf_array_unittest.cc",
88 "wtf_types_unittest.cc", 74 "wtf_types_unittest.cc",
89 ] 75 ]
90 76
91 deps = [ 77 deps = [
92 "//mojo/public/cpp/bindings", 78 "//mojo/public/cpp/bindings",
93 "//mojo/public/cpp/bindings:callback", 79 "//mojo/public/cpp/bindings:callback",
94 "//mojo/public/cpp/system", 80 "//mojo/public/cpp/system",
95 "//mojo/public/interfaces/bindings/tests:test_interfaces", 81 "//mojo/public/interfaces/bindings/tests:test_interfaces",
96 "//mojo/public/interfaces/bindings/tests:test_wtf_types", 82 "//mojo/public/interfaces/bindings/tests:test_wtf_types",
97 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", 83 "//mojo/public/interfaces/bindings/tests:test_wtf_types_wtf",
98 "//testing/gtest", 84 "//testing/gtest",
99 ] 85 ]
100 } 86 }
101 87
88 source_set("struct_with_traits_impl") {
89 sources = [
90 "struct_with_traits_impl.cc",
91 "struct_with_traits_impl.h",
92 ]
93
94 deps = [
95 "//base",
96 ]
97 }
98
102 source_set("perftests") { 99 source_set("perftests") {
103 testonly = true 100 testonly = true
104 101
105 sources = [ 102 sources = [
106 "bindings_perftest.cc", 103 "bindings_perftest.cc",
107 "e2e_perftest.cc", 104 "e2e_perftest.cc",
108 ] 105 ]
109 106
110 deps = [ 107 deps = [
111 "//base/test:test_support", 108 "//base/test:test_support",
(...skipping 11 matching lines...) Expand all
123 source_set("mojo_public_bindings_test_utils") { 120 source_set("mojo_public_bindings_test_utils") {
124 sources = [ 121 sources = [
125 "validation_test_input_parser.cc", 122 "validation_test_input_parser.cc",
126 "validation_test_input_parser.h", 123 "validation_test_input_parser.h",
127 ] 124 ]
128 125
129 deps = [ 126 deps = [
130 "//mojo/public/c/system", 127 "//mojo/public/c/system",
131 ] 128 ]
132 } 129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698