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

Unified 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, 7 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 side-by-side diff with in-line comments
Download patch
Index: tools/clang/value_cleanup/CMakeLists.txt
diff --git a/tools/clang/value_cleanup/CMakeLists.txt b/tools/clang/value_cleanup/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..3804117ee1880db087daa1623d803131996f764e
--- /dev/null
+++ b/tools/clang/value_cleanup/CMakeLists.txt
@@ -0,0 +1,29 @@
+set(LLVM_LINK_COMPONENTS
+ BitReader
+ MCParser
+ Option
+ X86AsmParser
+ X86CodeGen
+ )
+
+add_llvm_executable(value_cleanup
+ ListValueRewriter.cpp
+ ValueCleanup.cpp
+ )
+
+target_link_libraries(value_cleanup
+ clangAST
+ clangASTMatchers
+ clangAnalysis
+ clangBasic
+ clangDriver
+ clangEdit
+ clangFrontend
+ clangLex
+ clangParse
+ clangSema
+ clangSerialization
+ clangTooling
+ )
+
+cr_install(TARGETS value_cleanup RUNTIME DESTINATION bin)
« 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