| 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 29 matching lines...) Expand all Loading... |
| 40 "type_conversion_unittest.cc", | 40 "type_conversion_unittest.cc", |
| 41 "union_unittest.cc", | 41 "union_unittest.cc", |
| 42 "validation_context_unittest.cc", | 42 "validation_context_unittest.cc", |
| 43 "validation_unittest.cc", | 43 "validation_unittest.cc", |
| 44 "variant_test_util.h", | 44 "variant_test_util.h", |
| 45 ] | 45 ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 ":mojo_public_bindings_test_utils", | 48 ":mojo_public_bindings_test_utils", |
| 49 "//mojo/public/cpp/bindings", | 49 "//mojo/public/cpp/bindings", |
| 50 "//mojo/public/cpp/bindings:callback", |
| 50 "//mojo/public/cpp/system", | 51 "//mojo/public/cpp/system", |
| 51 "//mojo/public/cpp/test_support:test_utils", | 52 "//mojo/public/cpp/test_support:test_utils", |
| 52 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 53 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 53 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 54 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 54 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 55 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
| 55 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 56 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
| 56 "//testing/gtest", | 57 "//testing/gtest", |
| 57 ] | 58 ] |
| 58 | 59 |
| 59 data = [ | 60 data = [ |
| (...skipping 22 matching lines...) Expand all Loading... |
| 82 "container_test_util.h", | 83 "container_test_util.h", |
| 83 "map_common_test.h", | 84 "map_common_test.h", |
| 84 "variant_test_util.h", | 85 "variant_test_util.h", |
| 85 "wtf_array_unittest.cc", | 86 "wtf_array_unittest.cc", |
| 86 "wtf_map_unittest.cc", | 87 "wtf_map_unittest.cc", |
| 87 "wtf_types_unittest.cc", | 88 "wtf_types_unittest.cc", |
| 88 ] | 89 ] |
| 89 | 90 |
| 90 deps = [ | 91 deps = [ |
| 91 "//mojo/public/cpp/bindings", | 92 "//mojo/public/cpp/bindings", |
| 93 "//mojo/public/cpp/bindings:callback", |
| 92 "//mojo/public/cpp/system", | 94 "//mojo/public/cpp/system", |
| 93 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 95 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 94 "//mojo/public/interfaces/bindings/tests:test_wtf_types", | 96 "//mojo/public/interfaces/bindings/tests:test_wtf_types", |
| 95 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", | 97 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", |
| 96 "//testing/gtest", | 98 "//testing/gtest", |
| 97 ] | 99 ] |
| 98 } | 100 } |
| 99 } | 101 } |
| 100 | 102 |
| 101 source_set("struct_with_traits_impl") { | 103 source_set("struct_with_traits_impl") { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 118 ] | 120 ] |
| 119 | 121 |
| 120 if (!is_ios) { | 122 if (!is_ios) { |
| 121 sources += [ "e2e_perftest.cc" ] | 123 sources += [ "e2e_perftest.cc" ] |
| 122 } | 124 } |
| 123 | 125 |
| 124 deps = [ | 126 deps = [ |
| 125 "//base/test:test_support", | 127 "//base/test:test_support", |
| 126 "//mojo/edk/test:test_support", | 128 "//mojo/edk/test:test_support", |
| 127 "//mojo/public/cpp/bindings", | 129 "//mojo/public/cpp/bindings", |
| 130 "//mojo/public/cpp/bindings:callback", |
| 128 "//mojo/public/cpp/system", | 131 "//mojo/public/cpp/system", |
| 129 "//mojo/public/cpp/test_support:test_utils", | 132 "//mojo/public/cpp/test_support:test_utils", |
| 130 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 133 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 131 "//testing/gtest", | 134 "//testing/gtest", |
| 132 ] | 135 ] |
| 133 } | 136 } |
| 134 | 137 |
| 135 source_set("mojo_public_bindings_test_utils") { | 138 source_set("mojo_public_bindings_test_utils") { |
| 136 sources = [ | 139 sources = [ |
| 137 "validation_test_input_parser.cc", | 140 "validation_test_input_parser.cc", |
| 138 "validation_test_input_parser.h", | 141 "validation_test_input_parser.h", |
| 139 ] | 142 ] |
| 140 | 143 |
| 141 deps = [ | 144 deps = [ |
| 142 "//mojo/public/c/system", | 145 "//mojo/public/c/system", |
| 143 ] | 146 ] |
| 144 } | 147 } |
| OLD | NEW |