"//clang/lib/Tooling/Syntax",
"//llvm/include/llvm/Config:llvm-config",
"//llvm/lib/Support",
+ "//llvm/lib/Testing/Annotations",
"//llvm/lib/Testing/Support",
]
include_dirs = [
"//clang/lib/Lex",
"//clang/lib/Testing",
"//llvm/lib/Support",
+ "//llvm/lib/Testing/Annotations",
"//llvm/lib/Testing/Support",
]
include_dirs = [ "../include" ]
"//clang/lib/Tooling/Core",
"//clang/lib/Tooling/Transformer",
"//llvm/lib/Support",
+ "//llvm/lib/Testing/Annotations",
"//llvm/lib/Testing/Support",
]
include_dirs = [ "//clang-tools-extra/clang-tidy" ]
"//clang/lib/Tooling",
"//llvm/lib/Support",
"//llvm/lib/TargetParser",
+ "//llvm/lib/Testing/Annotations",
"//llvm/lib/Testing/Support",
]
sources = [
"//clang/lib/Testing",
"//clang/lib/Tooling",
"//llvm/lib/Support",
+ "//llvm/lib/Testing/Annotations",
"//llvm/lib/Testing/Support",
]
sources = [
"//clang/lib/Testing",
"//clang/lib/Tooling",
"//llvm/lib/Support",
+ "//llvm/lib/Testing/Annotations",
"//llvm/lib/Testing/Support",
]
sources = [
"//llvm/lib/Support",
"//llvm/lib/Target:TargetsToBuild",
"//llvm/lib/TargetParser",
+ "//llvm/lib/Testing/Annotations",
"//llvm/lib/Testing/Support",
]
sources = [
"//clang/lib/Tooling/Syntax",
"//llvm/lib/Support",
"//llvm/lib/Target:TargetsToBuild",
+ "//llvm/lib/Testing/Annotations",
"//llvm/lib/Testing/Support",
]
sources = [
--- /dev/null
+static_library("Annotations") {
+ output_name = "LLVMTestingAnnotations"
+ deps = [ "//llvm/lib/Support" ]
+ sources = [ "Annotations.cpp" ]
+ testonly = true
+}
"//third-party/unittest:gtest",
]
sources = [
- "Annotations.cpp",
"Error.cpp",
"SupportHelpers.cpp",
]
"AlignOfTest.cpp",
"AlignmentTest.cpp",
"AllocatorTest.cpp",
- "AnnotationsTest.cpp",
"ArrayRecyclerTest.cpp",
"BLAKE3Test.cpp",
"Base64Test.cpp",
--- /dev/null
+import("//third-party/unittest/unittest.gni")
+
+unittest("TestingSupportTests") {
+ deps = [
+ "//llvm/lib/Support",
+ "//llvm/lib/Testing/Annotations",
+ ]
+ sources = [ "AnnotationsTest.cpp" ]
+}