Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 set(LLVM_LINK_COMPONENTS | |
| 2 BitReader | |
| 3 MCParser | |
| 4 Option | |
| 5 X86AsmParser | |
| 6 X86CodeGen | |
| 7 ) | |
| 8 | |
| 9 add_llvm_executable(value_cleanup | |
| 10 ListValueRewriter.cpp | |
| 11 ValueCleanup.cpp | |
| 12 ) | |
| 13 | |
| 14 target_link_libraries(value_cleanup | |
| 15 clangAST | |
| 16 clangASTMatchers | |
| 17 clangAnalysis | |
| 18 clangBasic | |
| 19 clangDriver | |
| 20 clangEdit | |
| 21 clangFrontend | |
| 22 clangLex | |
| 23 clangParse | |
| 24 clangSema | |
| 25 clangSerialization | |
| 26 clangTooling | |
| 27 ) | |
| 28 | |
| 29 cr_install(TARGETS value_cleanup RUNTIME DESTINATION bin) | |
| OLD | NEW |