| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- # Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- # Exceptions. See /LICENSE for license information.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- package(default_visibility = [
- "//bazel/check_deps:__pkg__",
- "//executable_semantics:__subpackages__",
- ])
- cc_library(
- name = "arena",
- hdrs = ["arena.h"],
- deps = [
- ":nonnull",
- ],
- )
- cc_library(
- name = "error",
- hdrs = ["error.h"],
- deps = [
- "//common:check",
- ],
- )
- cc_test(
- name = "error_test",
- srcs = ["error_test.cpp"],
- deps = [
- ":error",
- "@com_google_googletest//:gtest_main",
- ],
- )
- cc_library(
- name = "nonnull",
- hdrs = ["nonnull.h"],
- deps = [
- "//common:check",
- "@llvm-project//llvm:Support",
- ],
- )
|