Files
carbon-lang/testing/file_test/BUILD
T
Jon Ross-PerkinsandChandler Carruth b1004012c3 Add linkstamp support to get the target name (#5451)
This removes hardcoding of the test target name from file_test.

---------

Co-authored-by: Chandler Carruth <chandlerc@gmail.com>
2025-05-12 19:01:01 +00:00

89 lines
2.1 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
load("//bazel/cc_rules:defs.bzl", "cc_library")
load("rules.bzl", "file_test")
package(default_visibility = ["//visibility:public"])
cc_library(
name = "autoupdate",
testonly = 1,
srcs = ["autoupdate.cpp"],
hdrs = [
"autoupdate.h",
"line.h",
],
deps = [
"//common:check",
"//common:ostream",
"//common:raw_string_ostream",
"//testing/base:file_helpers",
"@abseil-cpp//absl/strings",
"@abseil-cpp//absl/strings:string_view",
"@llvm-project//llvm:Support",
"@re2",
],
)
cc_library(
name = "file_test_base",
testonly = 1,
srcs = [
"file_test_base.cpp",
"run_test.cpp",
"run_test.h",
"test_file.cpp",
"test_file.h",
],
hdrs = ["file_test_base.h"],
deps = [
":autoupdate",
":manifest",
"//common:build_data",
"//common:check",
"//common:error",
"//common:exe_path",
"//common:find",
"//common:init_llvm",
"//common:ostream",
"//common:raw_string_ostream",
"//testing/base:file_helpers",
"@abseil-cpp//absl/flags:flag",
"@abseil-cpp//absl/flags:parse",
"@abseil-cpp//absl/strings",
"@googletest//:gtest",
"@llvm-project//llvm:Support",
],
)
file_test(
name = "file_test_base_test",
size = "small",
srcs = ["file_test_base_test.cpp"],
tests = glob(["testdata/**"]),
deps = [
":file_test_base",
"//common:ostream",
"@googletest//:gtest",
"@llvm-project//llvm:Support",
],
)
# Note this is separate from the implementation; see the .h file.
cc_library(
name = "manifest",
testonly = 1,
hdrs = ["manifest.h"],
deps = ["@llvm-project//llvm:Support"],
)
# Used through `file_test` in rules.bzl.
cc_library(
name = "manifest_impl",
testonly = 1,
srcs = ["manifest.cpp"],
deps = [":manifest"],
)