| 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 import("../../../mojo_application.gni") | 5 import("../../../mojo_application.gni") |
| 6 import("../../../mojo_sdk.gni") | 6 import("../../../mojo_sdk.gni") |
| 7 | 7 |
| 8 mojo_sdk_source_set("tests") { | 8 mojo_sdk_source_set("tests") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| 11 sources = [ | 11 sources = [ |
| 12 "array_unittest.cc", | 12 "array_unittest.cc", |
| 13 "binding_callback_unittest.cc", | 13 "binding_callback_unittest.cc", |
| 14 "binding_unittest.cc", | 14 "binding_unittest.cc", |
| 15 "bounds_checker_unittest.cc", | 15 "bounds_checker_unittest.cc", |
| 16 "buffer_unittest.cc", | 16 "buffer_unittest.cc", |
| 17 "callback_unittest.cc", | 17 "callback_unittest.cc", |
| 18 "connector_unittest.cc", | 18 "connector_unittest.cc", |
| 19 "constant_unittest.cc", | 19 "constant_unittest.cc", |
| 20 "container_test_util.cc", | 20 "container_test_util.cc", |
| 21 "equals_unittest.cc", | 21 "equals_unittest.cc", |
| 22 "formatting_unittest.cc", |
| 22 "handle_passing_unittest.cc", | 23 "handle_passing_unittest.cc", |
| 23 "interface_ptr_unittest.cc", | 24 "interface_ptr_unittest.cc", |
| 24 "interface_unittest.cc", | 25 "interface_unittest.cc", |
| 25 "iterator_test_util.h", | 26 "iterator_test_util.h", |
| 26 "iterator_util_unittest.cc", | 27 "iterator_util_unittest.cc", |
| 27 "map_unittest.cc", | 28 "map_unittest.cc", |
| 28 "message_builder_unittest.cc", | 29 "message_builder_unittest.cc", |
| 29 "message_queue.cc", | 30 "message_queue.cc", |
| 30 "message_queue.h", | 31 "message_queue.h", |
| 31 "request_response_unittest.cc", | 32 "request_response_unittest.cc", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 ] | 133 ] |
| 133 | 134 |
| 134 mojo_sdk_deps = [ | 135 mojo_sdk_deps = [ |
| 135 "mojo/public/cpp/application:standalone", | 136 "mojo/public/cpp/application:standalone", |
| 136 "mojo/public/cpp/application:test_support_standalone", | 137 "mojo/public/cpp/application:test_support_standalone", |
| 137 "mojo/public/cpp/bindings", | 138 "mojo/public/cpp/bindings", |
| 138 "mojo/public/cpp/system", | 139 "mojo/public/cpp/system", |
| 139 "mojo/public/interfaces/bindings/tests:versioning_test_client_interfaces", | 140 "mojo/public/interfaces/bindings/tests:versioning_test_client_interfaces", |
| 140 ] | 141 ] |
| 141 } | 142 } |
| OLD | NEW |