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

Unified Diff: tools/clang/rewrite_scoped_refptr/CMakeLists.txt

Issue 1385193002: Bisect clang Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 246985 Created 5 years, 2 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/rewrite_scoped_refptr/CMakeLists.txt
diff --git a/tools/clang/rewrite_scoped_refptr/CMakeLists.txt b/tools/clang/rewrite_scoped_refptr/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..aa47400ce3d6bf50fbd440334c1e8c425956815c
--- /dev/null
+++ b/tools/clang/rewrite_scoped_refptr/CMakeLists.txt
@@ -0,0 +1,27 @@
+set(LLVM_LINK_COMPONENTS
+ BitReader
+ MCParser
+ Option
+ X86AsmParser
+ )
+
+add_llvm_executable(rewrite_scoped_refptr
+ RewriteScopedRefptr.cpp
+ )
+
+target_link_libraries(rewrite_scoped_refptr
+ clangAST
+ clangASTMatchers
+ clangAnalysis
+ clangBasic
+ clangDriver
+ clangEdit
+ clangFrontend
+ clangLex
+ clangParse
+ clangSema
+ clangSerialization
+ clangTooling
+ )
+
+cr_install(TARGETS rewrite_scoped_refptr RUNTIME DESTINATION bin)
« no previous file with comments | « tools/clang/plugins/tests/weak_ptr_factory.txt ('k') | tools/clang/rewrite_scoped_refptr/RewriteScopedRefptr.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698