blob: 726e58785612e52518b3120ba46368046b97d115 [file] [log] [blame]
# Copyright 2014 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/shell/public/service_manifest.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//testing/test.gni")
group("all") {
testonly = true
deps = [
":shell",
"//services/shell/background",
"//services/shell/runner",
"//services/shell/standalone",
"//services/shell/tests",
]
}
source_set("shell") {
output_name = "mojo_shell"
sources = [
"connect_params.cc",
"connect_params.h",
"connect_util.cc",
"connect_util.h",
"native_runner.h",
"native_runner_delegate.h",
"service_manager.cc",
"service_manager.h",
"switches.cc",
"switches.h",
]
deps = [
"//base",
"//base/third_party/dynamic_annotations",
"//mojo/common",
"//mojo/public/cpp/bindings",
"//services/catalog/public/interfaces",
"//services/shell/public/cpp:sources",
"//services/shell/public/interfaces",
]
public_deps = [
# ApplicationManager exposes and uses PackageManager types in its header.
"//services/catalog:lib",
]
data_deps = [
":manifest",
]
}
service_manifest("manifest") {
name = "shell"
source = "manifest.json"
}