| 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_sdk.gni") | 5 import("../../../mojo_sdk.gni") |
| 6 | 6 |
| 7 mojo_sdk_source_set("tests") { | 7 mojo_sdk_source_set("tests") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| 11 "array_unittest.cc", | 11 "array_unittest.cc", |
| 12 "binding_callback_unittest.cc", |
| 12 "binding_unittest.cc", | 13 "binding_unittest.cc", |
| 13 "bounds_checker_unittest.cc", | 14 "bounds_checker_unittest.cc", |
| 14 "buffer_unittest.cc", | 15 "buffer_unittest.cc", |
| 15 "callback_unittest.cc", | 16 "callback_unittest.cc", |
| 16 "connector_unittest.cc", | 17 "connector_unittest.cc", |
| 17 "container_test_util.cc", | 18 "container_test_util.cc", |
| 18 "equals_unittest.cc", | 19 "equals_unittest.cc", |
| 19 "handle_passing_unittest.cc", | 20 "handle_passing_unittest.cc", |
| 20 "interface_ptr_unittest.cc", | 21 "interface_ptr_unittest.cc", |
| 21 "map_unittest.cc", | 22 "map_unittest.cc", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 47 } | 48 } |
| 48 | 49 |
| 49 mojo_sdk_source_set("mojo_public_bindings_test_utils") { | 50 mojo_sdk_source_set("mojo_public_bindings_test_utils") { |
| 50 sources = [ | 51 sources = [ |
| 51 "validation_test_input_parser.cc", | 52 "validation_test_input_parser.cc", |
| 52 "validation_test_input_parser.h", | 53 "validation_test_input_parser.h", |
| 53 ] | 54 ] |
| 54 | 55 |
| 55 mojo_sdk_deps = [ "mojo/public/c/system" ] | 56 mojo_sdk_deps = [ "mojo/public/c/system" ] |
| 56 } | 57 } |
| OLD | NEW |