blob: 9968e5ada68d5c32df23bd300e958dd809bc08f3 [file] [log] [blame]
# Copyright 2016 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/build/fidl/fidl.gni")
group("hello_world_cpp") {
public_deps = [
":hello_app_child",
":hello_app_parent",
]
}
executable("hello_app_parent") {
deps = [
":interfaces",
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/fsl",
"//peridot/public/lib/app_driver/cpp",
]
sources = [
"hello_app_parent.cc",
]
}
executable("hello_app_child") {
deps = [
":interfaces",
"//garnet/public/lib/app/cpp",
"//garnet/public/lib/fsl",
"//peridot/public/lib/app_driver/cpp",
]
sources = [
"hello_app_child.cc",
]
}
fidl("interfaces") {
name = "hello_world_module"
sources = [
"hello.fidl",
]
}