blob: f250359fe26c7b9cb293b090ce86ac00ae1dc874 [file] [log] [blame]
# 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/shell/public/cpp/service.gni")
import("//services/shell/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/login/public/interfaces",
"//mash/session/public/interfaces",
"//mojo/common",
"//mojo/public/cpp/bindings",
"//services/shell/public/cpp",
"//services/shell/public/cpp:sources",
]
data_deps = [
"//ash/mus",
"//mash/app_driver",
"//mash/quick_launch",
]
}
service("session") {
output_name = "mash_session"
sources = [
"main.cc",
]
deps = [
":lib",
"//base",
"//mash/session/public/interfaces",
"//mojo/common",
"//mojo/public/cpp/bindings",
"//services/shell/public/cpp",
"//services/shell/public/cpp:sources",
]
data_deps = [
":manifest",
]
}
service_manifest("manifest") {
name = "mash_session"
source = "manifest.json"
}