[Bazel] Fixes c1f6fd2 (#187146)

This fixes c1f6fd24aa637d6aadb72aa08bf3d8a14c961ed2.
This commit is contained in:
google-llvm-bazel-bot 2026-03-18 04:32:21 -07:00 committed by GitHub
parent f52b2616f4
commit f1b82dcd99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 16 additions and 0 deletions

View File

@ -2610,6 +2610,21 @@ cc_library(
],
)
cc_library(
name = "scalable_static_analysis_analyses",
srcs = glob([
"lib/ScalableStaticAnalysisFramework/Analyses/**/*.cpp",
]),
hdrs = glob(["include/clang/ScalableStaticAnalysisFramework/Analyses/**/*.h"]),
deps = [
":analysis",
":ast",
":basic",
":scalable_static_analysis_core",
"//llvm:Support",
],
)
cc_library(
name = "scalable_static_analysis_frontend",
srcs = glob([

View File

@ -795,6 +795,7 @@ cc_test(
"//clang:basic",
"//clang:frontend",
"//clang:lex",
"//clang:scalable_static_analysis_analyses",
"//clang:scalable_static_analysis_core",
"//clang:scalable_static_analysis_frontend",
"//clang:support",