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