| # 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", |
| ] |
| } |