| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//services/service_manager/public/cpp/service.gni") | 5 import("//services/service_manager/public/cpp/service.gni") |
| 6 import("//services/service_manager/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 source_set("lib") { | 10 source_set("lib") { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 57 |
| 58 service("host_test_service") { | 58 service("host_test_service") { |
| 59 sources = [ | 59 sources = [ |
| 60 "host_test_service_main.cc", | 60 "host_test_service_main.cc", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 64 "//mojo/public/cpp/system", | 64 "//mojo/public/cpp/system", |
| 65 "//services/service_manager/public/cpp/standalone_service:main", | 65 "//services/service_manager/public/cpp/standalone_service:main", |
| 66 ] | 66 ] |
| 67 | |
| 68 data_deps = [ | |
| 69 ":host_test_service_manifest", | |
| 70 ] | |
| 71 } | 67 } |
| 72 | 68 |
| 73 service_manifest("host_test_service_manifest") { | 69 service_manifest("host_test_service_manifest") { |
| 74 name = "host_test_service" | 70 name = "host_test_service" |
| 75 source = "host_test_service_manifest.json" | 71 source = "host_test_service_manifest.json" |
| 76 } | 72 } |
| OLD | NEW |