mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 20:10:13 +01:00
114 lines
2.3 KiB
Python
114 lines
2.3 KiB
Python
# 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 = ["//explorer:__subpackages__"])
|
|
|
|
cc_library(
|
|
name = "arena",
|
|
hdrs = ["arena.h"],
|
|
deps = [
|
|
":nonnull",
|
|
"@llvm-project//llvm:Support",
|
|
],
|
|
)
|
|
|
|
cc_test(
|
|
name = "arena_test",
|
|
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",
|
|
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",
|
|
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 = "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",
|
|
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",
|
|
srcs = ["set_file_context_raii_test.cpp"],
|
|
deps = [
|
|
":source_location",
|
|
":trace_stream",
|
|
"//testing/base:gtest_main",
|
|
"@com_google_googletest//:gtest",
|
|
],
|
|
)
|