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

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

Issue 2448133006: Tool added to extract network traffic annotations. (Closed)
Patch Set: nits Created 3 years, 10 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/traffic_annotation_extractor/CMakeLists.txt
diff --git a/tools/clang/traffic_annotation_extractor/CMakeLists.txt b/tools/clang/traffic_annotation_extractor/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f33d3ae7bb079b9c4d6c0c27be729127378f62b5
--- /dev/null
+++ b/tools/clang/traffic_annotation_extractor/CMakeLists.txt
@@ -0,0 +1,26 @@
+set(LLVM_LINK_COMPONENTS
+ BitReader
+ MCParser
+ Option
+ )
+
+add_llvm_executable(traffic_annotation_extractor
+ traffic_annotation_extractor.cpp
+ )
+
+target_link_libraries(traffic_annotation_extractor
+ clangAST
+ clangASTMatchers
+ clangAnalysis
+ clangBasic
+ clangDriver
+ clangEdit
+ clangFrontend
+ clangLex
+ clangParse
+ clangSema
+ clangSerialization
+ clangTooling
+ )
+
+cr_install(TARGETS traffic_annotation_extractor RUNTIME DESTINATION bin)

Powered by Google App Engine
This is Rietveld 408576698