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 ValueCleanup.cpp | |
| 11 ) | |
| 12 | |
| 13 target_link_libraries(value_cleanup | |
| 14 clangAST | |
| 15 clangASTMatchers | |
| 16 clangAnalysis | |
| 17 clangBasic | |
| 18 clangDriver | |
| 19 clangEdit | |
| 20 clangFrontend | |
| 21 clangLex | |
| 22 clangParse | |
| 23 clangSema | |
| 24 clangSerialization | |
| 25 clangTooling | |
| 26 ) | |
| 27 | |
| 28 cr_install(TARGETS value_cleanup RUNTIME DESTINATION bin) | |
| OLD | NEW |