| 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 18 matching lines...) Expand all Loading... |
| 29 "switches.cc", | 29 "switches.cc", |
| 30 "switches.h", | 30 "switches.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
| 36 "//mojo/common", | 36 "//mojo/common", |
| 37 "//mojo/public/cpp/bindings", | 37 "//mojo/public/cpp/bindings", |
| 38 "//services/catalog/public/interfaces:constants", | 38 "//services/catalog/public/interfaces:constants", |
| 39 "//services/service_manager/public/cpp:sources", | 39 "//services/service_manager/public/cpp", |
| 40 "//services/service_manager/public/interfaces", | 40 "//services/service_manager/public/interfaces", |
| 41 "//services/service_manager/runner/host:lib", | 41 "//services/service_manager/runner/host:lib", |
| 42 ] | 42 ] |
| 43 | 43 |
| 44 public_deps = [ | 44 public_deps = [ |
| 45 # ApplicationManager exposes and uses PackageManager types in its header. | 45 # ApplicationManager exposes and uses PackageManager types in its header. |
| 46 "//services/catalog:lib", | 46 "//services/catalog:lib", |
| 47 ] | 47 ] |
| 48 } | 48 } |
| 49 | 49 |
| 50 service_manifest("manifest") { | 50 service_manifest("manifest") { |
| 51 name = "service_manager" | 51 name = "service_manager" |
| 52 source = "manifest.json" | 52 source = "manifest.json" |
| 53 } | 53 } |
| OLD | NEW |