summaryrefslogtreecommitdiff
path: root/chromium/ash/standalone/BUILD.gn
blob: c438c0e16530e4b3f4a3507c36f458024ffdea37 (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
# Copyright 2017 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("//services/service_manager/public/cpp/service.gni")
import("//services/service_manager/public/service_manifest.gni")

assert(is_chromeos)

service("ash_standalone") {
  output_name = "ash_standalone"
  testonly = true

  sources = [
    "ash_standalone_main.cc",
  ]

  deps = [
    "//ash",
    "//ash:ash_service_resources",
    "//ash:ash_service_resources_200",
    "//ash:ash_shell_lib",
    "//ash/app_list/presenter",
    "//services/service_manager/public/cpp",
    "//services/ui/public/cpp/input_devices",
    "//services/ui/public/interfaces",
    "//ui/views/examples:views_examples_lib",
  ]

  # TODO(beng): This target relies on //mash/session, but there is a cycle so we
  #             can't state that dependency here.
  data_deps = [
    "//ash:ash_service_resources",
    "//ash:ash_service_resources_200",
    "//services/ui",
  ]
}

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