blob: 884e7d1e7375114c0e0e2fd99d672d827b6e0d1d [file] [log] [blame]
# Copyright 2018 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 = "chrealm"
sources = [
"main.cc",
]
deps = [
"//garnet/lib/chrealm",
"//garnet/public/lib/fxl",
]
}
package("chrealm") {
deprecated_system_image = true
deps = [
":bin",
]
binaries = [
{
name = "chrealm"
},
]
}