1import("//llvm/utils/unittest/unittest.gni") 2 3unittest("StaticAnalysisTests") { 4 configs += [ "//llvm/utils/gn/build:clang_code" ] 5 deps = [ 6 "//clang/lib/Analysis", 7 "//clang/lib/Basic", 8 "//clang/lib/StaticAnalyzer/Core", 9 "//clang/lib/StaticAnalyzer/Frontend", 10 "//clang/lib/Tooling", 11 "//llvm/lib/Support", 12 ] 13 sources = [ 14 "AnalyzerOptionsTest.cpp", 15 "CallDescriptionTest.cpp", 16 "CallEventTest.cpp", 17 "FalsePositiveRefutationBRVisitorTest.cpp", 18 "ParamRegionTest.cpp", 19 "RangeSetTest.cpp", 20 "RegisterCustomCheckersTest.cpp", 21 "SymbolReaperTest.cpp", 22 "TestReturnValueUnderConstruction.cpp", 23 ] 24} 25