| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "//mojo/edk/test:test_support", | 126 "//mojo/edk/test:test_support", |
| 127 "//mojo/public/cpp/bindings", | 127 "//mojo/public/cpp/bindings", |
| 128 "//mojo/public/cpp/system", | 128 "//mojo/public/cpp/system", |
| 129 "//mojo/public/cpp/test_support:test_utils", | 129 "//mojo/public/cpp/test_support:test_utils", |
| 130 "//mojo/public/interfaces/bindings/tests:test_interfaces", | 130 "//mojo/public/interfaces/bindings/tests:test_interfaces", |
| 131 "//testing/gtest", | 131 "//testing/gtest", |
| 132 ] | 132 ] |
| 133 } | 133 } |
| 134 | 134 |
| 135 source_set("mojo_public_bindings_test_utils") { | 135 source_set("mojo_public_bindings_test_utils") { |
| 136 testonly = true |
| 137 |
| 136 sources = [ | 138 sources = [ |
| 139 "thread_per_task_sequenced_task_runner.cc", |
| 140 "thread_per_task_sequenced_task_runner.h", |
| 137 "validation_test_input_parser.cc", | 141 "validation_test_input_parser.cc", |
| 138 "validation_test_input_parser.h", | 142 "validation_test_input_parser.h", |
| 139 ] | 143 ] |
| 140 | 144 |
| 141 deps = [ | 145 deps = [ |
| 146 "//base", |
| 142 "//mojo/public/c/system", | 147 "//mojo/public/c/system", |
| 148 "//testing/gtest", |
| 143 ] | 149 ] |
| 144 } | 150 } |
| OLD | NEW |