OLD | NEW |
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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 } | 76 } |
77 | 77 |
78 if (!is_ios) { | 78 if (!is_ios) { |
79 source_set("for_blink_tests") { | 79 source_set("for_blink_tests") { |
80 testonly = true | 80 testonly = true |
81 | 81 |
82 sources = [ | 82 sources = [ |
83 "array_common_test.h", | 83 "array_common_test.h", |
84 "container_test_util.cc", | 84 "container_test_util.cc", |
85 "container_test_util.h", | 85 "container_test_util.h", |
86 "map_common_test.h", | |
87 "variant_test_util.h", | 86 "variant_test_util.h", |
88 "wtf_array_unittest.cc", | 87 "wtf_array_unittest.cc", |
89 "wtf_hash_unittest.cc", | 88 "wtf_hash_unittest.cc", |
90 "wtf_map_unittest.cc", | |
91 "wtf_types_unittest.cc", | 89 "wtf_types_unittest.cc", |
92 ] | 90 ] |
93 | 91 |
94 deps = [ | 92 deps = [ |
95 "//mojo/public/cpp/bindings", | 93 "//mojo/public/cpp/bindings", |
96 "//mojo/public/cpp/system", | 94 "//mojo/public/cpp/system", |
97 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 95 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
98 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", | 96 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", |
99 "//mojo/public/interfaces/bindings/tests:test_wtf_types", | 97 "//mojo/public/interfaces/bindings/tests:test_wtf_types", |
100 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", | 98 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 source_set("mojo_public_bindings_test_utils") { | 138 source_set("mojo_public_bindings_test_utils") { |
141 sources = [ | 139 sources = [ |
142 "validation_test_input_parser.cc", | 140 "validation_test_input_parser.cc", |
143 "validation_test_input_parser.h", | 141 "validation_test_input_parser.h", |
144 ] | 142 ] |
145 | 143 |
146 deps = [ | 144 deps = [ |
147 "//mojo/public/c/system", | 145 "//mojo/public/c/system", |
148 ] | 146 ] |
149 } | 147 } |
OLD | NEW |