Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: tools/clang/value_cleanup/CMakeLists.txt

Issue 2032983002: base::Value cleanup: add simple Clang tool for structured cleanups (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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)
OLDNEW
« no previous file with comments | « tools/clang/rewrite_to_chrome_style/RewriteToChromeStyle.cpp ('k') | tools/clang/value_cleanup/ListValueRewriter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698