summaryrefslogtreecommitdiff
path: root/chromium/mash/quick_launch/BUILD.gn
blob: 48dd48a85c717d83b5c6d872b1d931455941686e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/ui.gni")
import("//services/service_manager/public/cpp/service.gni")
import("//services/service_manager/public/service_manifest.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//tools/grit/repack.gni")

source_set("lib") {
  sources = [
    "quick_launch.cc",
    "quick_launch.h",
  ]

  deps = [
    "//base",
    "//mash/public/interfaces",
    "//mojo/public/cpp/bindings",
    "//services/catalog/public/interfaces",
    "//services/service_manager/public/cpp",
    "//services/service_manager/public/interfaces",
    "//ui/views",
    "//ui/views/mus:for_mojo_application",
    "//url",
  ]
}

service("quick_launch") {
  sources = [
    "main.cc",
  ]

  deps = [
    ":lib",
    "//services/service_manager/public/cpp",
    "//ui/views/mus:for_mojo_application",
  ]

  data_deps = [
    "//ui/views/mus:resources",
  ]
}

service_manifest("manifest") {
  name = "quick_launch"
  source = "manifest.json"
}