blob: 9baa417ae933ec2de8b185abef1d97bf1c2e1085 [file] [log] [blame]
# 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")
fuchsia_package_with_single_component("environment_delegating_runner") {
testonly = true
manifest = "meta/environment_delegating_runner.cmx"
deps = [ ":bin" ]
}
executable("bin") {
output_name = "environment_delegating_runner"
testonly = true
sources = [ "environment_delegating_runner.cc" ]
deps = [
"//sdk/fidl/fuchsia.sys",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
]
}