| 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",
- srcs = ["arena.cpp"],
- hdrs = ["arena.h"],
- deps = [
- ":ptr",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "error",
- hdrs = ["error.h"],
- deps = [
- "//common:check",
- ],
- )
- cc_test(
- name = "error_test",
- srcs = ["error_test.cpp"],
- deps = [
- ":error",
- "@llvm-project//llvm:gtest",
- "@llvm-project//llvm:gtest_main",
- ],
- )
- cc_library(
- name = "ptr",
- hdrs = ["ptr.h"],
- deps = [
- "//common:check",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_library(
- name = "tracing_flag",
- srcs = ["tracing_flag.cpp"],
- hdrs = ["tracing_flag.h"],
- visibility = ["//executable_semantics:__subpackages__"],
- )
|