| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 deps = [ | 43 deps = [ |
| 44 ":mojo_public_bindings_test_utils", | 44 ":mojo_public_bindings_test_utils", |
| 45 "//base/test:test_support", | 45 "//base/test:test_support", |
| 46 "//mojo/edk/system", | 46 "//mojo/edk/system", |
| 47 "//mojo/public/cpp/bindings", | 47 "//mojo/public/cpp/bindings", |
| 48 "//mojo/public/cpp/system", | 48 "//mojo/public/cpp/system", |
| 49 "//mojo/public/cpp/test_support:test_utils", | 49 "//mojo/public/cpp/test_support:test_utils", |
| 50 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", | 50 "//mojo/public/interfaces/bindings/tests:test_associated_interfaces", |
| 51 "//mojo/public/interfaces/bindings/tests:test_export_component", | 51 "//mojo/public/interfaces/bindings/tests:test_export_component", |
| 52 "//mojo/public/interfaces/bindings/tests:test_export_component2", |
| 52 "//mojo/public/interfaces/bindings/tests:test_exported_import", | 53 "//mojo/public/interfaces/bindings/tests:test_exported_import", |
| 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 = [ |
| 60 "//mojo/public/interfaces/bindings/tests/data/validation/", | 61 "//mojo/public/interfaces/bindings/tests/data/validation/", |
| 61 ] | 62 ] |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 source_set("mojo_public_bindings_test_utils") { | 138 source_set("mojo_public_bindings_test_utils") { |
| 138 sources = [ | 139 sources = [ |
| 139 "validation_test_input_parser.cc", | 140 "validation_test_input_parser.cc", |
| 140 "validation_test_input_parser.h", | 141 "validation_test_input_parser.h", |
| 141 ] | 142 ] |
| 142 | 143 |
| 143 deps = [ | 144 deps = [ |
| 144 "//mojo/public/c/system", | 145 "//mojo/public/c/system", |
| 145 ] | 146 ] |
| 146 } | 147 } |
| OLD | NEW |