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 30 matching lines...) Expand all Loading... |
41 "stl_converters_unittest.cc", | 41 "stl_converters_unittest.cc", |
42 "string_unittest.cc", | 42 "string_unittest.cc", |
43 "struct_traits_unittest.cc", | 43 "struct_traits_unittest.cc", |
44 "struct_unittest.cc", | 44 "struct_unittest.cc", |
45 "struct_with_traits_impl.cc", | 45 "struct_with_traits_impl.cc", |
46 "struct_with_traits_impl.h", | 46 "struct_with_traits_impl.h", |
47 "sync_method_unittest.cc", | 47 "sync_method_unittest.cc", |
48 "type_conversion_unittest.cc", | 48 "type_conversion_unittest.cc", |
49 "union_unittest.cc", | 49 "union_unittest.cc", |
50 "validation_unittest.cc", | 50 "validation_unittest.cc", |
| 51 "wtf_types_unittest.cc", |
51 ] | 52 ] |
52 | 53 |
53 deps = [ | 54 deps = [ |
54 ":mojo_public_bindings_test_utils", | 55 ":mojo_public_bindings_test_utils", |
55 "//mojo/environment:chromium", | 56 "//mojo/environment:chromium", |
56 "//mojo/message_pump", | 57 "//mojo/message_pump", |
57 "//mojo/public/cpp/bindings", | 58 "//mojo/public/cpp/bindings", |
58 "//mojo/public/cpp/bindings:callback", | 59 "//mojo/public/cpp/bindings:callback", |
59 "//mojo/public/cpp/system", | 60 "//mojo/public/cpp/system", |
60 "//mojo/public/cpp/test_support:test_utils", | 61 "//mojo/public/cpp/test_support:test_utils", |
61 "//mojo/public/cpp/utility", | 62 "//mojo/public/cpp/utility", |
62 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 63 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
63 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 64 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
64 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", | 65 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", |
65 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", | 66 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", |
66 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 67 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
67 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 68 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
| 69 "//mojo/public/interfaces/bindings/tests:test_wtf_types", |
| 70 "//mojo/public/interfaces/bindings/tests:test_wtf_types_wtf", |
68 "//testing/gtest", | 71 "//testing/gtest", |
| 72 "//third_party/WebKit/Source/wtf:test_support", |
69 ] | 73 ] |
70 } | 74 } |
71 | 75 |
72 source_set("perftests") { | 76 source_set("perftests") { |
73 testonly = true | 77 testonly = true |
74 | 78 |
75 sources = [ | 79 sources = [ |
76 "bindings_perftest.cc", | 80 "bindings_perftest.cc", |
77 ] | 81 ] |
78 | 82 |
(...skipping 12 matching lines...) Expand all Loading... |
91 source_set("mojo_public_bindings_test_utils") { | 95 source_set("mojo_public_bindings_test_utils") { |
92 sources = [ | 96 sources = [ |
93 "validation_test_input_parser.cc", | 97 "validation_test_input_parser.cc", |
94 "validation_test_input_parser.h", | 98 "validation_test_input_parser.h", |
95 ] | 99 ] |
96 | 100 |
97 deps = [ | 101 deps = [ |
98 "//mojo/public/c/system", | 102 "//mojo/public/c/system", |
99 ] | 103 ] |
100 } | 104 } |
OLD | NEW |