blob: 9514a2863af330663f9f827c8d4dd06948580dfa [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("//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"
} ]
}