blob: 24662aa889710b45b498ee8175bd84648c9c81b9 [file] [log] [blame]
# Copyright 2025 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.
load("//build/bazel/bazel_idk:defs.bzl", "idk_cc_shared_library_zx")
idk_cc_shared_library_zx(
name = "async-default",
srcs = ["default.c"],
hdrs = ["include/lib/async/default.h"],
api_area = "Kernel",
category = "partner",
idk_name = "async-default",
target_compatible_with = ["@platforms//os:fuchsia"],
visibility = ["//visibility:public"],
deps = [
# <lib/async/default.h> has #include <lib/async/dispatcher.h>.
"//sdk/lib/async",
],
)