forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBUILD.gn
52 lines (43 loc) · 1.08 KB
/
BUILD.gn
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
50
51
52
# Copyright 2015 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 = [
"session.cc",
"session.h",
]
deps = [
"//base",
"//mash/common",
"//mojo/public/cpp/bindings",
"//services/service_manager/public/cpp",
]
if (is_chromeos) {
deps += [ "//ash/components/quick_launch/public/mojom:constants" ]
data_deps = [
"//ash:ash_service",
"//ash/components/quick_launch:quick_launch_app",
]
}
}
service("session") {
output_name = "mash_session"
sources = [
"main.cc",
]
deps = [
":lib",
"//base",
"//mojo/public/cpp/bindings",
"//services/service_manager/public/cpp",
]
}
service_manifest("manifest") {
name = "mash_session"
source = "manifest.json"
}