1static_library("ARCMigrate") { 2 output_name = "clangARCMigrate" 3 configs += [ "//llvm/utils/gn/build:clang_code" ] 4 deps = [ 5 "//clang/lib/AST", 6 "//clang/lib/Analysis", 7 "//clang/lib/Basic", 8 "//clang/lib/Edit", 9 "//clang/lib/Frontend", 10 "//clang/lib/Lex", 11 "//clang/lib/Rewrite", 12 "//clang/lib/Sema", 13 "//clang/lib/Serialization", 14 "//llvm/lib/Support", 15 ] 16 sources = [ 17 "ARCMT.cpp", 18 "ARCMTActions.cpp", 19 "FileRemapper.cpp", 20 "ObjCMT.cpp", 21 "PlistReporter.cpp", 22 "TransAPIUses.cpp", 23 "TransARCAssign.cpp", 24 "TransAutoreleasePool.cpp", 25 "TransBlockObjCVariable.cpp", 26 "TransEmptyStatementsAndDealloc.cpp", 27 "TransGCAttrs.cpp", 28 "TransGCCalls.cpp", 29 "TransProperties.cpp", 30 "TransProtectedScope.cpp", 31 "TransRetainReleaseDealloc.cpp", 32 "TransUnbridgedCasts.cpp", 33 "TransUnusedInitDelegate.cpp", 34 "TransZeroOutPropsInDealloc.cpp", 35 "TransformActions.cpp", 36 "Transforms.cpp", 37 ] 38} 39