| # 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 | |
| zx_library("zxc") { | |
| kernel = true | |
| sources = [] | |
| deps = [ ":tests" ] | |
| public_deps = [ "$zx/system/ulib/zxc" ] | |
| } | |
| source_set("tests") { | |
| #TODO: testonly = true | |
| visibility = [ ":*" ] | |
| sources = [ "result_tests.cc" ] | |
| deps = [ | |
| ":headers", | |
| "$zx/kernel/lib/libc", | |
| "$zx/kernel/lib/unittest", | |
| ] | |
| } |