blob: 5afad9f086552e8617ca892d0af6edc6b8d057ab [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("//mojo/public/tools/bindings/mojom.gni")
import("//services/service_manager/public/cpp/service.gni")
import("//services/service_manager/public/service_manifest.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"
}