| 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 import("//mojo/public/mojo.gni") | 7 import("//mojo/public/mojo.gni") |
| 8 | 8 |
| 9 mojo_sdk_source_set("tests") { | 9 mojo_sdk_source_set("tests") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "router_unittest.cc", | 29 "router_unittest.cc", |
| 30 "sample_service_unittest.cc", | 30 "sample_service_unittest.cc", |
| 31 "serialization_warning_unittest.cc", | 31 "serialization_warning_unittest.cc", |
| 32 "string_unittest.cc", | 32 "string_unittest.cc", |
| 33 "struct_unittest.cc", | 33 "struct_unittest.cc", |
| 34 "type_conversion_unittest.cc", | 34 "type_conversion_unittest.cc", |
| 35 "union_unittest.cc", | 35 "union_unittest.cc", |
| 36 "validation_unittest.cc", | 36 "validation_unittest.cc", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 restrict_external_deps = false |
| 40 |
| 39 deps = [ | 41 deps = [ |
| 40 ":mojo_public_bindings_test_utils", | 42 ":mojo_public_bindings_test_utils", |
| 43 "//base", |
| 41 "//mojo/environment:chromium", | 44 "//mojo/environment:chromium", |
| 42 "//mojo/message_pump", | 45 "//mojo/message_pump", |
| 43 "//testing/gtest", | 46 "//testing/gtest", |
| 44 ] | 47 ] |
| 45 | 48 |
| 46 mojo_sdk_deps = [ | 49 mojo_sdk_deps = [ |
| 47 "mojo/public/cpp/bindings", | 50 "mojo/public/cpp/bindings", |
| 48 "mojo/public/cpp/bindings:callback", | 51 "mojo/public/cpp/bindings:callback", |
| 49 "mojo/public/cpp/system", | 52 "mojo/public/cpp/system", |
| 50 "mojo/public/cpp/test_support:test_utils", | 53 "mojo/public/cpp/test_support:test_utils", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 135 |
| 133 mojo_sdk_deps = [ | 136 mojo_sdk_deps = [ |
| 134 "mojo/public/cpp/application:standalone", | 137 "mojo/public/cpp/application:standalone", |
| 135 "mojo/public/cpp/application:test_support_standalone", | 138 "mojo/public/cpp/application:test_support_standalone", |
| 136 "mojo/public/cpp/bindings", | 139 "mojo/public/cpp/bindings", |
| 137 "mojo/public/cpp/system", | 140 "mojo/public/cpp/system", |
| 138 "mojo/public/interfaces/bindings/tests:versioning_test_client_interfaces", | 141 "mojo/public/interfaces/bindings/tests:versioning_test_client_interfaces", |
| 139 ] | 142 ] |
| 140 } | 143 } |
| 141 } | 144 } |
| OLD | NEW |