blob: 9142be4dcb596980cdcf7c6485f0e263771d7426 [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
import("//build/zircon/migrated_targets.gni")
zx_library("zxc") {
kernel = true
sources = []
deps = [ ":tests" ]
public_deps = [ "//zircon/system/ulib/zxc" ]
}
source_set("tests") {
#TODO: testonly = true
visibility = [ ":*" ]
sources = [ "result_tests.cc" ]
deps = [
":headers",
"//zircon/kernel/lib/libc",
"//zircon/kernel/lib/unittest",
]
}