# 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("//packages/package.gni") | |
executable("run_bin") { | |
output_name = "run" | |
sources = [ | |
"main.cc", | |
] | |
deps = [ | |
"//garnet/public/lib/app/cpp", | |
"//garnet/public/lib/app/fidl", | |
] | |
} | |
package("run") { | |
deps = [ | |
":run_bin", | |
] | |
binaries = [ { | |
name = "run" | |
} ] | |
} |