brintos

brintos / llvm-project-archived public Read only

0
0
Text · 552 B · 1c64b55 Raw
19 lines · plain
1import("//third-party/unittest/unittest.gni")2 3unittest("FindAllSymbolsTests") {4  configs += [ "//llvm/utils/gn/build:clang_code" ]5  deps = [6    "//clang-tools-extra/clang-include-fixer/find-all-symbols",7    "//clang/lib/AST",8    "//clang/lib/ASTMatchers",9    "//clang/lib/Basic",10    "//clang/lib/Frontend",11    "//clang/lib/Lex",12    "//clang/lib/Serialization",13    "//clang/lib/Tooling",14    "//llvm/lib/Support",15  ]16  include_dirs = [ "//clang-tools-extra/clang-include-fixer/find-all-symbols" ]17  sources = [ "FindAllSymbolsTests.cpp" ]18}19