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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 | 70 |
71 deps += [ "//mojo/public/interfaces/bindings/tests:test_interfaces_blink" ] | 71 deps += [ "//mojo/public/interfaces/bindings/tests:test_interfaces_blink" ] |
72 } | 72 } |
73 } | 73 } |
74 | 74 |
75 if (!is_ios) { | 75 if (!is_ios) { |
76 source_set("for_blink_tests") { | 76 source_set("for_blink_tests") { |
77 testonly = true | 77 testonly = true |
78 | 78 |
79 sources = [ | 79 sources = [ |
80 "array_common_test.h", | |
81 "container_test_util.cc", | 80 "container_test_util.cc", |
82 "container_test_util.h", | 81 "container_test_util.h", |
83 "variant_test_util.h", | 82 "variant_test_util.h", |
84 "wtf_array_unittest.cc", | |
85 "wtf_hash_unittest.cc", | 83 "wtf_hash_unittest.cc", |
86 "wtf_types_unittest.cc", | 84 "wtf_types_unittest.cc", |
87 ] | 85 ] |
88 | 86 |
89 deps = [ | 87 deps = [ |
90 "//mojo/public/cpp/bindings", | 88 "//mojo/public/cpp/bindings", |
91 "//mojo/public/cpp/system", | 89 "//mojo/public/cpp/system", |
92 "//mojo/public/interfaces/bindings/tests:test_export_blink_component", | 90 "//mojo/public/interfaces/bindings/tests:test_export_blink_component", |
93 "//mojo/public/interfaces/bindings/tests:test_exported_import_blink", | 91 "//mojo/public/interfaces/bindings/tests:test_exported_import_blink", |
94 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 92 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 source_set("mojo_public_bindings_test_utils") { | 135 source_set("mojo_public_bindings_test_utils") { |
138 sources = [ | 136 sources = [ |
139 "validation_test_input_parser.cc", | 137 "validation_test_input_parser.cc", |
140 "validation_test_input_parser.h", | 138 "validation_test_input_parser.h", |
141 ] | 139 ] |
142 | 140 |
143 deps = [ | 141 deps = [ |
144 "//mojo/public/c/system", | 142 "//mojo/public/c/system", |
145 ] | 143 ] |
146 } | 144 } |
OLD | NEW |