| 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 "associated_interface_unittest.cc", | 9 "associated_interface_unittest.cc", |
| 10 "bind_task_runner_unittest.cc", | 10 "bind_task_runner_unittest.cc", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "sync_method_unittest.cc", | 34 "sync_method_unittest.cc", |
| 35 "type_conversion_unittest.cc", | 35 "type_conversion_unittest.cc", |
| 36 "union_unittest.cc", | 36 "union_unittest.cc", |
| 37 "validation_context_unittest.cc", | 37 "validation_context_unittest.cc", |
| 38 "validation_unittest.cc", | 38 "validation_unittest.cc", |
| 39 "variant_test_util.h", | 39 "variant_test_util.h", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 deps = [ | 42 deps = [ |
| 43 ":mojo_public_bindings_test_utils", | 43 ":mojo_public_bindings_test_utils", |
| 44 "//base/test:test_support", |
| 44 "//mojo/edk/system", | 45 "//mojo/edk/system", |
| 45 "//mojo/public/cpp/bindings", | 46 "//mojo/public/cpp/bindings", |
| 46 "//mojo/public/cpp/system", | 47 "//mojo/public/cpp/system", |
| 47 "//mojo/public/cpp/test_support:test_utils", | 48 "//mojo/public/cpp/test_support:test_utils", |
| 48 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 49 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 49 "//mojo/public/interfaces/bindings/tests:test_export_component", | 50 "//mojo/public/interfaces/bindings/tests:test_export_component", |
| 50 "//mojo/public/interfaces/bindings/tests:test_exported_import", | 51 "//mojo/public/interfaces/bindings/tests:test_exported_import", |
| 51 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 52 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 52 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 53 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
| 53 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 54 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 source_set("mojo_public_bindings_test_utils") { | 135 source_set("mojo_public_bindings_test_utils") { |
| 135 sources = [ | 136 sources = [ |
| 136 "validation_test_input_parser.cc", | 137 "validation_test_input_parser.cc", |
| 137 "validation_test_input_parser.h", | 138 "validation_test_input_parser.h", |
| 138 ] | 139 ] |
| 139 | 140 |
| 140 deps = [ | 141 deps = [ |
| 141 "//mojo/public/c/system", | 142 "//mojo/public/c/system", |
| 142 ] | 143 ] |
| 143 } | 144 } |
| OLD | NEW |