| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/shell/public/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
| 7 import("//services/shell/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("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 service("window_type_launcher") { | 11 service("window_type_launcher") { |
| 12 testonly = true | 12 testonly = true |
| 13 | 13 |
| 14 sources = [ | 14 sources = [ |
| 15 "window_type_launcher.cc", | 15 "window_type_launcher.cc", |
| 16 "window_type_launcher.h", | 16 "window_type_launcher.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 "//base", | 20 "//base", |
| 21 "//mash/public/interfaces", | 21 "//mash/public/interfaces", |
| 22 "//mash/session/public/interfaces", | 22 "//mash/session/public/interfaces", |
| 23 "//mojo/public/cpp/bindings", | 23 "//mojo/public/cpp/bindings", |
| 24 "//services/shell/public/cpp", | 24 "//services/service_manager/public/cpp", |
| 25 "//services/shell/public/interfaces", | 25 "//services/service_manager/public/interfaces", |
| 26 "//services/tracing/public/cpp", | 26 "//services/tracing/public/cpp", |
| 27 "//services/ui/public/cpp", | 27 "//services/ui/public/cpp", |
| 28 "//services/ui/public/interfaces", | 28 "//services/ui/public/interfaces", |
| 29 "//skia", | 29 "//skia", |
| 30 "//ui/aura", | 30 "//ui/aura", |
| 31 "//ui/gfx", | 31 "//ui/gfx", |
| 32 "//ui/gfx/geometry", | 32 "//ui/gfx/geometry", |
| 33 "//ui/gfx/geometry/mojo", | 33 "//ui/gfx/geometry/mojo", |
| 34 "//ui/views", | 34 "//ui/views", |
| 35 "//ui/views/mus:for_mojo_application", | 35 "//ui/views/mus:for_mojo_application", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 resources = [ "$root_out_dir/views_mus_resources.pak" ] | 38 resources = [ "$root_out_dir/views_mus_resources.pak" ] |
| 39 | 39 |
| 40 data_deps = [ | 40 data_deps = [ |
| 41 ":manifest", | 41 ":manifest", |
| 42 "//services/ui", | 42 "//services/ui", |
| 43 ] | 43 ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 service_manifest("manifest") { | 46 service_manifest("manifest") { |
| 47 name = "window_type_launcher" | 47 name = "window_type_launcher" |
| 48 source = "manifest.json" | 48 source = "manifest.json" |
| 49 } | 49 } |
| OLD | NEW |