| # Copyright 2019 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("//build/components.gni") |
| |
| group("hello_world") { |
| testonly = true |
| deps = [ |
| ":hello-world", |
| ":tests", |
| ] |
| } |
| |
| group("tests") { |
| testonly = true |
| deps = [ |
| "cpp:tests", |
| "rust:tests", |
| ] |
| } |
| |
| fuchsia_package("hello-world") { |
| deps = [ |
| # component-url: fuchsia-pkg://fuchsia.com/hello-world#meta/hello-world-cpp.cm |
| "cpp:hello-world-cpp-component", |
| |
| # component-url: fuchsia-pkg://fuchsia.com/hello-world#meta/hello-world-rust.cm |
| "rust:hello-world-rust-component", |
| ] |
| } |