| 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 19 matching lines...) Expand all Loading... |
| 30 "move_event_handler.cc", | 30 "move_event_handler.cc", |
| 31 "move_event_handler.h", | 31 "move_event_handler.h", |
| 32 "move_loop.cc", | 32 "move_loop.cc", |
| 33 "move_loop.h", | 33 "move_loop.h", |
| 34 "simple_wm.cc", | 34 "simple_wm.cc", |
| 35 "simple_wm.h", | 35 "simple_wm.h", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 deps = [ | 38 deps = [ |
| 39 "//base", | 39 "//base", |
| 40 "//mash/simple_wm/public/interfaces", |
| 40 "//services/service_manager/public/cpp", | 41 "//services/service_manager/public/cpp", |
| 41 "//services/ui/public/cpp", | 42 "//services/ui/public/cpp", |
| 42 "//services/ui/public/interfaces", | 43 "//services/ui/public/interfaces", |
| 43 "//ui/aura", | 44 "//ui/aura", |
| 44 "//ui/aura:test_support", | 45 "//ui/aura:test_support", |
| 45 "//ui/display", | 46 "//ui/display", |
| 46 "//ui/display:test_support", | 47 "//ui/display:test_support", |
| 47 "//ui/gfx/geometry/mojo", | 48 "//ui/gfx/geometry/mojo", |
| 48 "//ui/views", | 49 "//ui/views", |
| 49 "//ui/views/mus:mus", | 50 "//ui/views/mus:mus", |
| 50 "//ui/wm", | 51 "//ui/wm", |
| 51 ] | 52 ] |
| 52 | 53 |
| 53 public_deps = [ | 54 public_deps = [ |
| 54 "//skia", # Due to use of Sk types in service header. | 55 "//skia", # Due to use of Sk types in service header. |
| 55 ] | 56 ] |
| 56 | 57 |
| 57 data_deps = [ | 58 data_deps = [ |
| 58 "//services/ui", | 59 "//services/ui", |
| 59 ] | 60 ] |
| 60 } | 61 } |
| 61 | 62 |
| 62 service_manifest("manifest") { | 63 service_manifest("manifest") { |
| 63 name = "simple_wm" | 64 name = "simple_wm" |
| 64 source = "manifest.json" | 65 source = "manifest.json" |
| 65 } | 66 } |
| OLD | NEW |