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 clangBasic 17 lldbBreakpoint 18 lldbCore 19 lldbDataFormatters 20 lldbExpression 21 lldbHost 22 lldbInterpreter 23 lldbSymbol 24 lldbTarget 25 LINK_COMPONENTS 26 Core 27 IRReader 28 Support 29 Target 30 ) 31