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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 61 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
62 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 62 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
63 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", | 63 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", |
64 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", | 64 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", |
65 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 65 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
66 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 66 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
67 "//testing/gtest", | 67 "//testing/gtest", |
68 ] | 68 ] |
69 } | 69 } |
70 | 70 |
| 71 source_set("for_blink_tests") { |
| 72 testonly = true |
| 73 |
| 74 sources = [ |
| 75 "wtf_types_unittest.cc", |
| 76 ] |
| 77 |
| 78 deps = [ |
| 79 "//mojo/public/cpp/bindings", |
| 80 "//mojo/public/cpp/bindings:callback", |
| 81 "//mojo/public/cpp/system", |
| 82 "//mojo/public/cpp/test_support:test_utils", |
| 83 "//mojo/public/interfaces/bindings/tests:test_wtf_types", |
| 84 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", |
| 85 "//testing/gtest", |
| 86 ] |
| 87 } |
| 88 |
71 source_set("perftests") { | 89 source_set("perftests") { |
72 testonly = true | 90 testonly = true |
73 | 91 |
74 sources = [ | 92 sources = [ |
75 "bindings_perftest.cc", | 93 "bindings_perftest.cc", |
76 "e2e_perftest.cc", | 94 "e2e_perftest.cc", |
77 ] | 95 ] |
78 | 96 |
79 deps = [ | 97 deps = [ |
80 "//base/test:test_support", | 98 "//base/test:test_support", |
(...skipping 11 matching lines...) Expand all Loading... |
92 source_set("mojo_public_bindings_test_utils") { | 110 source_set("mojo_public_bindings_test_utils") { |
93 sources = [ | 111 sources = [ |
94 "validation_test_input_parser.cc", | 112 "validation_test_input_parser.cc", |
95 "validation_test_input_parser.h", | 113 "validation_test_input_parser.h", |
96 ] | 114 ] |
97 | 115 |
98 deps = [ | 116 deps = [ |
99 "//mojo/public/c/system", | 117 "//mojo/public/c/system", |
100 ] | 118 ] |
101 } | 119 } |
OLD | NEW |