| 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 source_set("tests") { | 5 source_set("tests") { |
| 6 testonly = true | 6 testonly = true |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "array_common_test.h", | 9 "array_common_test.h", |
| 10 "array_unittest.cc", | 10 "array_unittest.cc", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 deps = [ | 48 deps = [ |
| 49 ":mojo_public_bindings_test_utils", | 49 ":mojo_public_bindings_test_utils", |
| 50 "//mojo/edk/system", | 50 "//mojo/edk/system", |
| 51 "//mojo/public/cpp/bindings", | 51 "//mojo/public/cpp/bindings", |
| 52 "//mojo/public/cpp/system", | 52 "//mojo/public/cpp/system", |
| 53 "//mojo/public/cpp/test_support:test_utils", | 53 "//mojo/public/cpp/test_support:test_utils", |
| 54 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 54 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 55 "//mojo/public/interfaces/bindings/tests:test_export_component", | 55 "//mojo/public/interfaces/bindings/tests:test_export_component", |
| 56 "//mojo/public/interfaces/bindings/tests:test_exported_import", |
| 56 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 57 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 57 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 58 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
| 58 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 59 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
| 59 "//testing/gtest", | 60 "//testing/gtest", |
| 60 ] | 61 ] |
| 61 | 62 |
| 62 data = [ | 63 data = [ |
| 63 "//mojo/public/interfaces/bindings/tests/data/validation/", | 64 "//mojo/public/interfaces/bindings/tests/data/validation/", |
| 64 ] | 65 ] |
| 65 | 66 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 85 "container_test_util.h", | 86 "container_test_util.h", |
| 86 "variant_test_util.h", | 87 "variant_test_util.h", |
| 87 "wtf_array_unittest.cc", | 88 "wtf_array_unittest.cc", |
| 88 "wtf_hash_unittest.cc", | 89 "wtf_hash_unittest.cc", |
| 89 "wtf_types_unittest.cc", | 90 "wtf_types_unittest.cc", |
| 90 ] | 91 ] |
| 91 | 92 |
| 92 deps = [ | 93 deps = [ |
| 93 "//mojo/public/cpp/bindings", | 94 "//mojo/public/cpp/bindings", |
| 94 "//mojo/public/cpp/system", | 95 "//mojo/public/cpp/system", |
| 96 "//mojo/public/interfaces/bindings/tests:test_export_blink_component", |
| 97 "//mojo/public/interfaces/bindings/tests:test_exported_import_blink", |
| 95 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 98 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 96 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", | 99 "//mojo/public/interfaces/bindings/tests:test_interfaces_blink", |
| 97 "//mojo/public/interfaces/bindings/tests:test_wtf_types", | 100 "//mojo/public/interfaces/bindings/tests:test_wtf_types", |
| 98 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", | 101 "//mojo/public/interfaces/bindings/tests:test_wtf_types_blink", |
| 99 "//testing/gtest", | 102 "//testing/gtest", |
| 100 ] | 103 ] |
| 101 } | 104 } |
| 102 } | 105 } |
| 103 | 106 |
| 104 source_set("struct_with_traits_impl") { | 107 source_set("struct_with_traits_impl") { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 source_set("mojo_public_bindings_test_utils") { | 141 source_set("mojo_public_bindings_test_utils") { |
| 139 sources = [ | 142 sources = [ |
| 140 "validation_test_input_parser.cc", | 143 "validation_test_input_parser.cc", |
| 141 "validation_test_input_parser.h", | 144 "validation_test_input_parser.h", |
| 142 ] | 145 ] |
| 143 | 146 |
| 144 deps = [ | 147 deps = [ |
| 145 "//mojo/public/c/system", | 148 "//mojo/public/c/system", |
| 146 ] | 149 ] |
| 147 } | 150 } |
| OLD | NEW |