blob: d67e7f0855401e68cfc678ec19ff4131a7a5b51b [file] [log] [blame]
# Copyright (c) 2025, Google LLC
# All rights reserved.
#
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd
load("@rules_cc//cc:cc_library.bzl", "cc_library")
package(default_applicable_licenses = ["//:license"])
cc_library(
name = "cpp",
hdrs = ["cpp.h"],
visibility = ["//hpb:__subpackages__"],
deps = [
"//hpb:arena",
"//hpb:extension",
"//hpb:ptr",
"//hpb/internal:template_help",
"@abseil-cpp//absl/status:statusor",
"@abseil-cpp//absl/strings:string_view",
],
)
cc_library(
name = "interop",
hdrs = ["interop.h"],
deps = [
"//hpb/internal",
],
)