summaryrefslogtreecommitdiff
path: root/llvm/utils/gn/secondary/clang/unittests/Introspection/BUILD.gn
blob: 687ac2b812658502ac9e2225edbafcf80868702e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import("//third-party/unittest/unittest.gni")

unittest("IntrospectionTests") {
  configs += [ "//llvm/utils/gn/build:clang_code" ]
  deps = [
    "//clang/lib/AST",
    "//clang/lib/ASTMatchers",
    "//clang/lib/Basic",
    "//clang/lib/Frontend",
    "//clang/lib/Serialization",
    "//clang/lib/Tooling",
    "//llvm/lib/Support",
    "//llvm/lib/Testing/Support",
  ]

  defines = [ "SKIP_INTROSPECTION_GENERATION" ]

  sources = [ "IntrospectionTest.cpp" ]
}