1if(NOT LLDB_BUILT_STANDALONE)
2  set(tablegen_deps intrinsics_gen)
3endif()
4
5
6add_lldb_library(lldbPluginRenderScriptRuntime PLUGIN
7  RenderScriptRuntime.cpp
8  RenderScriptExpressionOpts.cpp
9  RenderScriptx86ABIFixups.cpp
10  RenderScriptScriptGroup.cpp
11
12  DEPENDS
13  ${tablegen_deps}
14
15  LINK_LIBS
16    lldbBreakpoint
17    lldbCore
18    lldbDataFormatters
19    lldbExpression
20    lldbHost
21    lldbInterpreter
22    lldbSymbol
23    lldbTarget
24  CLANG_LIBS
25    clangBasic
26  LINK_COMPONENTS
27    Core
28    IRReader
29    Support
30    Target
31  )
32