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