[NFC][Py Reformat] Reformat python files in llvm
[llvm-project.git] / llvm / utils / gn / secondary / clang / unittests / Interpreter / BUILD.gn
blobceaacdf5cb08e31c6929f3fa572f372e531e7fa7
1 import("//third-party/unittest/unittest.gni")
3 unittest("ClangReplInterpreterTests") {
4   configs += [ "//llvm/utils/gn/build:clang_code" ]
5   deps = [
6     "//clang/lib/AST",
7     "//clang/lib/Basic",
8     "//clang/lib/Frontend",
9     "//clang/lib/Interpreter",
10     "//llvm/lib/IR",
11     "//llvm/lib/TargetParser",
12   ]
13   sources = [
14     "IncrementalProcessingTest.cpp",
15     "InterpreterTest.cpp",
16   ]
18   # Support plugins.
19   # FIXME: Disable dead stripping once other binaries are dead-stripped.
20   if (host_os != "mac" && host_os != "win") {
21     # Corresponds to export_executable_symbols() in cmake.
22     ldflags = [ "-rdynamic" ]
23   }