blob: b1d1d1bbccbfa89da20c11de352f25e9948564b4 [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("//build/package.gni")
executable("bin") {
output_name = "run"
sources = [
"main.cc",
]
deps = [
"//garnet/public/fidl/fuchsia.sys",
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/component/cpp:environment_services",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/zx",
]
}
package("run") {
deprecated_system_image = true
deps = [
":bin",
]
binaries = [
{
name = "run"
},
]
}