blob: a7f5fb4a95c6b6bece9c7e6ad568aa356db57b9b [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/lib/app/cpp",
"//garnet/public/lib/app/fidl",
]
}
package("run") {
deprecated_system_image = true
deps = [
":bin",
]
binaries = [ {
name = "run"
} ]
}