| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/edk/system", | 49 "//mojo/edk/system", |
| 50 "//mojo/public/cpp/bindings", | 50 "//mojo/public/cpp/bindings", |
| 51 "//mojo/public/cpp/system", | 51 "//mojo/public/cpp/system", |
| 52 "//mojo/public/cpp/test_support:test_utils", | 52 "//mojo/public/cpp/test_support:test_utils", |
| 53 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 53 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 54 "//mojo/public/interfaces/bindings/tests:test_export_component", |
| 54 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 55 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 55 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", | 56 "//mojo/public/interfaces/bindings/tests:test_interfaces_experimental", |
| 56 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", | 57 "//mojo/public/interfaces/bindings/tests:test_struct_traits_interfaces", |
| 57 "//testing/gtest", | 58 "//testing/gtest", |
| 58 ] | 59 ] |
| 59 | 60 |
| 60 data = [ | 61 data = [ |
| 61 "//mojo/public/interfaces/bindings/tests/data/validation/", | 62 "//mojo/public/interfaces/bindings/tests/data/validation/", |
| 62 ] | 63 ] |
| 63 | 64 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 source_set("mojo_public_bindings_test_utils") { | 137 source_set("mojo_public_bindings_test_utils") { |
| 137 sources = [ | 138 sources = [ |
| 138 "validation_test_input_parser.cc", | 139 "validation_test_input_parser.cc", |
| 139 "validation_test_input_parser.h", | 140 "validation_test_input_parser.h", |
| 140 ] | 141 ] |
| 141 | 142 |
| 142 deps = [ | 143 deps = [ |
| 143 "//mojo/public/c/system", | 144 "//mojo/public/c/system", |
| 144 ] | 145 ] |
| 145 } | 146 } |
| OLD | NEW |