Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: ash/mus/standalone/BUILD.gn

Issue 2840043003: chromeos: Makes mushrome use simplified display management (Closed)
Patch Set: make virtual terminal work Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//services/service_manager/public/cpp/service.gni")
6 import("//services/service_manager/public/service_manifest.gni")
7
8 assert(is_chromeos)
9
10 service("standalone_ash") {
11 output_name = "standalone_ash"
12 testonly = true
13
14 sources = [
15 "standalone_mash_main.cc",
16 ]
17
18 deps = [
19 "//ash:ash_shell_lib",
20 "//ash/mus:lib",
21 "//ash/mus:resources",
22 "//ash/mus:resources_200",
23 "//services/service_manager/public/cpp",
24 "//services/ui/public/cpp/input_devices",
25 "//services/ui/public/interfaces",
26 "//ui/app_list/presenter",
27 "//ui/views/examples:views_examples_lib",
28 ]
29
30 # TODO(beng): This target relies on //mash/session, but there is a cycle so we
31 # can't state that dependency here.
32 data_deps = [
33 "//ash/mus:resources",
34 "//ash/mus:resources_200",
35 "//services/ui",
36 ]
37 }
38
39 service_manifest("manifest") {
40 name = "standalone_ash"
41 source = "manifest.json"
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698