| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/catalog/public/tools/catalog.gni") | 5 import("//services/catalog/public/tools/catalog.gni") |
| 6 import("//services/service_manager/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "//base", | 21 "//base", |
| 22 "//base/test:test_config", | 22 "//base/test:test_config", |
| 23 "//services/service_manager/public/cpp:service_test_support", | 23 "//services/service_manager/public/cpp:service_test_support", |
| 24 "//services/service_manager/public/cpp:sources", | 24 "//services/service_manager/public/cpp:sources", |
| 25 "//services/service_manager/public/interfaces", | 25 "//services/service_manager/public/interfaces", |
| 26 ] | 26 ] |
| 27 | 27 |
| 28 data_deps = [ | 28 data_deps = [ |
| 29 ":shutdown_client", | 29 ":shutdown_client", |
| 30 ":shutdown_service", | 30 ":shutdown_service", |
| 31 ":shutdown_unittest_manifest", | |
| 32 ] | 31 ] |
| 33 } | 32 } |
| 34 | 33 |
| 35 mojom("interfaces") { | 34 mojom("interfaces") { |
| 36 sources = [ | 35 sources = [ |
| 37 "shutdown_unittest.mojom", | 36 "shutdown_unittest.mojom", |
| 38 ] | 37 ] |
| 39 } | 38 } |
| 40 | 39 |
| 41 service_manifest("shutdown_unittest_manifest") { | 40 service_manifest("shutdown_unittest_manifest") { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 52 testonly = true | 51 testonly = true |
| 53 sources = [ | 52 sources = [ |
| 54 "shutdown_service_app.cc", | 53 "shutdown_service_app.cc", |
| 55 ] | 54 ] |
| 56 deps = [ | 55 deps = [ |
| 57 ":interfaces", | 56 ":interfaces", |
| 58 "//base", | 57 "//base", |
| 59 "//services/service_manager/public/cpp:sources", | 58 "//services/service_manager/public/cpp:sources", |
| 60 "//services/service_manager/public/interfaces", | 59 "//services/service_manager/public/interfaces", |
| 61 ] | 60 ] |
| 62 data_deps = [ | |
| 63 ":shutdown_service_manifest", | |
| 64 ] | |
| 65 } | 61 } |
| 66 | 62 |
| 67 service_manifest("shutdown_client_manifest") { | 63 service_manifest("shutdown_client_manifest") { |
| 68 name = "shutdown_client" | 64 name = "shutdown_client" |
| 69 source = "shutdown_client_manifest.json" | 65 source = "shutdown_client_manifest.json" |
| 70 } | 66 } |
| 71 | 67 |
| 72 service("shutdown_client") { | 68 service("shutdown_client") { |
| 73 testonly = true | 69 testonly = true |
| 74 sources = [ | 70 sources = [ |
| 75 "shutdown_client_app.cc", | 71 "shutdown_client_app.cc", |
| 76 ] | 72 ] |
| 77 deps = [ | 73 deps = [ |
| 78 ":interfaces", | 74 ":interfaces", |
| 79 "//base", | 75 "//base", |
| 80 "//services/service_manager/public/cpp:sources", | 76 "//services/service_manager/public/cpp:sources", |
| 81 "//services/service_manager/public/interfaces", | 77 "//services/service_manager/public/interfaces", |
| 82 ] | 78 ] |
| 83 data_deps = [ | |
| 84 ":shutdown_client_manifest", | |
| 85 ] | |
| 86 } | 79 } |
| 87 | 80 |
| 88 catalog("catalog") { | 81 catalog("catalog") { |
| 89 embedded_services = [ ":shutdown_unittest_manifest" ] | 82 embedded_services = [ ":shutdown_unittest_manifest" ] |
| 90 | 83 |
| 91 standalone_services = [ | 84 standalone_services = [ |
| 92 ":shutdown_client_manifest", | 85 ":shutdown_client_manifest", |
| 93 ":shutdown_service_manifest", | 86 ":shutdown_service_manifest", |
| 94 ] | 87 ] |
| 95 } | 88 } |
| OLD | NEW |