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 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 testonly = true | 72 testonly = true |
73 | 73 |
74 sources = [ | 74 sources = [ |
75 "wtf_types_unittest.cc", | 75 "wtf_types_unittest.cc", |
76 ] | 76 ] |
77 | 77 |
78 deps = [ | 78 deps = [ |
79 "//mojo/public/cpp/bindings", | 79 "//mojo/public/cpp/bindings", |
80 "//mojo/public/cpp/bindings:callback", | 80 "//mojo/public/cpp/bindings:callback", |
81 "//mojo/public/cpp/system", | 81 "//mojo/public/cpp/system", |
82 "//mojo/public/cpp/test_support:test_utils", | |
83 "//mojo/public/interfaces/bindings/tests:test_wtf_types", | 82 "//mojo/public/interfaces/bindings/tests:test_wtf_types", |
84 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", | 83 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", |
85 "//testing/gtest", | 84 "//testing/gtest", |
86 ] | 85 ] |
87 } | 86 } |
88 | 87 |
89 source_set("perftests") { | 88 source_set("perftests") { |
90 testonly = true | 89 testonly = true |
91 | 90 |
92 sources = [ | 91 sources = [ |
(...skipping 17 matching lines...) Expand all Loading... |
110 source_set("mojo_public_bindings_test_utils") { | 109 source_set("mojo_public_bindings_test_utils") { |
111 sources = [ | 110 sources = [ |
112 "validation_test_input_parser.cc", | 111 "validation_test_input_parser.cc", |
113 "validation_test_input_parser.h", | 112 "validation_test_input_parser.h", |
114 ] | 113 ] |
115 | 114 |
116 deps = [ | 115 deps = [ |
117 "//mojo/public/c/system", | 116 "//mojo/public/c/system", |
118 ] | 117 ] |
119 } | 118 } |
OLD | NEW |