blob: 64f74f781039aa4b4c72b452dd206b86ff2e92fe [file] [log] [blame]
# Copyright 2017 The Fuchsia 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("//garnet/public/lib/fidl/fidl.gni")
group("cpp") {
public_deps = [
":module_driver",
]
}
source_set("module_driver") {
sources = [
"module_driver.h",
]
# Since this is a header-only target, all dependencies in module_driver.h
# need to also be dependencies in consuming targets.
public_deps = [
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/fidl/cpp/bindings",
"//garnet/public/lib/fsl",
"//garnet/public/lib/fxl",
"//garnet/public/lib/ui/views/fidl",
"//peridot/public/lib/lifecycle/cpp",
"//peridot/public/lib/module/cpp",
"//peridot/public/lib/module/fidl",
]
}