| 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("//build/config/ui.gni") | 5 import("//build/config/ui.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("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 service("simple_wm") { | 10 service("simple_wm") { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "//ui/views", | 48 "//ui/views", |
| 49 "//ui/views/mus:mus", | 49 "//ui/views/mus:mus", |
| 50 "//ui/wm", | 50 "//ui/wm", |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 public_deps = [ | 53 public_deps = [ |
| 54 "//skia", # Due to use of Sk types in service header. | 54 "//skia", # Due to use of Sk types in service header. |
| 55 ] | 55 ] |
| 56 | 56 |
| 57 data_deps = [ | 57 data_deps = [ |
| 58 ":manifest", | |
| 59 "//services/ui", | 58 "//services/ui", |
| 60 ] | 59 ] |
| 61 } | 60 } |
| 62 | 61 |
| 63 service_manifest("manifest") { | 62 service_manifest("manifest") { |
| 64 name = "simple_wm" | 63 name = "simple_wm" |
| 65 source = "manifest.json" | 64 source = "manifest.json" |
| 66 } | 65 } |
| OLD | NEW |