| 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("//services/service_manager/public/service_manifest.gni") | 5 import("//services/service_manager/public/service_manifest.gni") |
| 6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 group("all") { | 9 group("all") { |
| 10 testonly = true | 10 testonly = true |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 # ApplicationManager exposes and uses PackageManager types in its header. | 47 # ApplicationManager exposes and uses PackageManager types in its header. |
| 48 "//services/catalog:lib", | 48 "//services/catalog:lib", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 data_deps = [ | 51 data_deps = [ |
| 52 ":manifest", | 52 ":manifest", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 | 55 |
| 56 service_manifest("manifest") { | 56 service_manifest("manifest") { |
| 57 name = "shell" | 57 name = "service_manager" |
| 58 source = "manifest.json" | 58 source = "manifest.json" |
| 59 } | 59 } |
| OLD | NEW |