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

Side by Side Diff: mojo/public/cpp/bindings/tests/BUILD.gn

Issue 2339413004: Allow Mojo structs as map keys (Closed)
Patch Set: Remove left-over import Created 4 years, 3 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 source_set("tests") { 5 source_set("tests") {
6 testonly = true 6 testonly = true
7 7
8 sources = [ 8 sources = [
9 "array_common_test.h", 9 "array_common_test.h",
10 "array_unittest.cc", 10 "array_unittest.cc",
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "variant_test_util.h", 87 "variant_test_util.h",
88 "wtf_array_unittest.cc", 88 "wtf_array_unittest.cc",
89 "wtf_map_unittest.cc", 89 "wtf_map_unittest.cc",
90 "wtf_types_unittest.cc", 90 "wtf_types_unittest.cc",
91 ] 91 ]
92 92
93 deps = [ 93 deps = [
94 "//mojo/public/cpp/bindings", 94 "//mojo/public/cpp/bindings",
95 "//mojo/public/cpp/system", 95 "//mojo/public/cpp/system",
96 "//mojo/public/interfaces/bindings/tests:test_interfaces", 96 "//mojo/public/interfaces/bindings/tests:test_interfaces",
97 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink",
97 "//mojo/public/interfaces/bindings/tests:test_wtf_types", 98 "//mojo/public/interfaces/bindings/tests:test_wtf_types",
98 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", 99 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink",
99 "//testing/gtest", 100 "//testing/gtest",
100 ] 101 ]
101 } 102 }
102 } 103 }
103 104
104 source_set("struct_with_traits_impl") { 105 source_set("struct_with_traits_impl") {
105 sources = [ 106 sources = [
106 "struct_with_traits_impl.cc", 107 "struct_with_traits_impl.cc",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 source_set("mojo_public_bindings_test_utils") { 139 source_set("mojo_public_bindings_test_utils") {
139 sources = [ 140 sources = [
140 "validation_test_input_parser.cc", 141 "validation_test_input_parser.cc",
141 "validation_test_input_parser.h", 142 "validation_test_input_parser.h",
142 ] 143 ]
143 144
144 deps = [ 145 deps = [
145 "//mojo/public/c/system", 146 "//mojo/public/c/system",
146 ] 147 ]
147 } 148 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698