xref: /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/clang/unittests/Introspection/BUILD.gn (revision d415bd752c734aee168c4ee86ff32e8cc249eb16)
1import("//third-party/unittest/unittest.gni")
2
3unittest("IntrospectionTests") {
4  configs += [ "//llvm/utils/gn/build:clang_code" ]
5  deps = [
6    "//clang/lib/AST",
7    "//clang/lib/ASTMatchers",
8    "//clang/lib/Basic",
9    "//clang/lib/Frontend",
10    "//clang/lib/Serialization",
11    "//clang/lib/Tooling",
12    "//llvm/lib/Support",
13    "//llvm/lib/Testing/Support",
14  ]
15
16  defines = [ "SKIP_INTROSPECTION_GENERATION" ]
17
18  sources = [ "IntrospectionTest.cpp" ]
19}
20