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_test_base.cc", |
| 52 "wtf_test_base.h", |
| 53 "wtf_types_unittest.cc", |
51 ] | 54 ] |
52 | 55 |
53 deps = [ | 56 deps = [ |
54 ":mojo_public_bindings_test_utils", | 57 ":mojo_public_bindings_test_utils", |
55 "//mojo/environment:chromium", | 58 "//mojo/environment:chromium", |
56 "//mojo/message_pump", | 59 "//mojo/message_pump", |
57 "//mojo/public/cpp/bindings", | 60 "//mojo/public/cpp/bindings", |
58 "//mojo/public/cpp/bindings:callback", | 61 "//mojo/public/cpp/bindings:callback", |
59 "//mojo/public/cpp/system", | 62 "//mojo/public/cpp/system", |
60 "//mojo/public/cpp/test_support:test_utils", | 63 "//mojo/public/cpp/test_support:test_utils", |
61 "//mojo/public/cpp/utility", | 64 "//mojo/public/cpp/utility", |
62 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 65 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
63 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 66 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
64 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", | 67 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", |
65 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", | 68 "//mojo/public/interfaces/bindings/tests:test_interfaces_chromium", |
66 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 69 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
67 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 70 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
| 71 "//mojo/public/interfaces/bindings/tests:test_wtf_types", |
| 72 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", |
68 "//testing/gtest", | 73 "//testing/gtest", |
| 74 "//third_party/WebKit/Source/wtf:test_support", |
69 ] | 75 ] |
70 } | 76 } |
71 | 77 |
72 source_set("perftests") { | 78 source_set("perftests") { |
73 testonly = true | 79 testonly = true |
74 | 80 |
75 sources = [ | 81 sources = [ |
76 "bindings_perftest.cc", | 82 "bindings_perftest.cc", |
77 ] | 83 ] |
78 | 84 |
(...skipping 13 matching lines...) Expand all Loading... |
92 source_set("mojo_public_bindings_test_utils") { | 98 source_set("mojo_public_bindings_test_utils") { |
93 sources = [ | 99 sources = [ |
94 "validation_test_input_parser.cc", | 100 "validation_test_input_parser.cc", |
95 "validation_test_input_parser.h", | 101 "validation_test_input_parser.h", |
96 ] | 102 ] |
97 | 103 |
98 deps = [ | 104 deps = [ |
99 "//mojo/public/c/system", | 105 "//mojo/public/c/system", |
100 ] | 106 ] |
101 } | 107 } |
OLD | NEW |