| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- # 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
- load("@rules_cc//cc:defs.bzl", "cc_library", "cc_test")
- package(default_visibility = ["//explorer:__subpackages__"])
- cc_library(
- name = "arena",
- hdrs = ["arena.h"],
- deps = [
- ":nonnull",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "arena_test",
- size = "small",
- srcs = ["arena_test.cpp"],
- deps = [
- ":arena",
- "//testing/base:gtest_main",
- "@com_google_googletest//:gtest",
- ],
- )
- cc_library(
- name = "decompose",
- hdrs = ["decompose.h"],
- deps = [
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "decompose_test",
- size = "small",
- srcs = ["decompose_test.cpp"],
- deps = [
- ":decompose",
- "//testing/base:gtest_main",
- "@com_google_googletest//:gtest",
- ],
- )
- cc_library(
- name = "error_builders",
- hdrs = ["error_builders.h"],
- deps = [
- ":source_location",
- "//common:error",
- ],
- )
- cc_test(
- name = "error_builders_test",
- size = "small",
- srcs = ["error_builders_test.cpp"],
- deps = [
- ":error_builders",
- ":source_location",
- "//testing/base:gtest_main",
- "//testing/base:test_raw_ostream",
- "@com_google_googletest//:gtest",
- ],
- )
- cc_library(
- name = "nonnull",
- hdrs = ["nonnull.h"],
- deps = [
- "//common:check",
- ],
- )
- cc_library(
- name = "print_as_id",
- hdrs = ["print_as_id.h"],
- deps = [
- "//common:ostream",
- ],
- )
- cc_library(
- name = "source_location",
- hdrs = ["source_location.h"],
- deps = [
- ":nonnull",
- "//common:ostream",
- ],
- )
- cc_library(
- name = "trace_stream",
- hdrs = ["trace_stream.h"],
- deps = [
- ":source_location",
- "//common:check",
- "//common:ostream",
- "//explorer/base:nonnull",
- "@llvm-project//llvm:Support",
- ],
- )
- cc_test(
- name = "set_program_phase_raii_test",
- size = "small",
- srcs = ["set_program_phase_raii_test.cpp"],
- deps = [
- ":trace_stream",
- "//testing/base:gtest_main",
- "@com_google_googletest//:gtest",
- ],
- )
- cc_test(
- name = "set_file_context_raii_test",
- size = "small",
- srcs = ["set_file_context_raii_test.cpp"],
- deps = [
- ":source_location",
- ":trace_stream",
- "//testing/base:gtest_main",
- "@com_google_googletest//:gtest",
- ],
- )
|