| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # 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 = ["//executable_semantics:__subpackages__"])
- cc_library(
- name = "arena",
- hdrs = ["arena.h"],
- deps = [
- ":nonnull",
- ],
- )
- cc_library(
- name = "error_builders",
- hdrs = ["error_builders.h"],
- deps = [
- ":source_location",
- "//common:error",
- ],
- )
- cc_test(
- name = "error_builders_test",
- srcs = ["error_builders_test.cpp"],
- deps = [
- ":error_builders",
- ":source_location",
- "//common:gtest_main",
- ],
- )
- cc_library(
- name = "nonnull",
- hdrs = ["nonnull.h"],
- deps = [
- "//common:check",
- ],
- )
- cc_library(
- name = "source_location",
- hdrs = ["source_location.h"],
- deps = [
- ":nonnull",
- "//common:ostream",
- ],
- )
|