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

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

Issue 2448133006: Tool added to extract network traffic annotations. (Closed)
Patch Set: Created 4 years, 1 month 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
1 set(LLVM_LINK_COMPONENTS 1 set(LLVM_LINK_COMPONENTS
2 BitReader 2 BitReader
3 MCParser 3 MCParser
4 Option 4 Option
5 X86AsmParser
6 X86CodeGen
7 ) 5 )
8 6
9 add_llvm_executable(rewrite_scoped_refptr 7 add_llvm_executable(traffic_annotation_extractor
10 RewriteScopedRefptr.cpp 8 traffic_annotation_extractor.cpp
11 ) 9 )
12 10
13 target_link_libraries(rewrite_scoped_refptr 11 target_link_libraries(traffic_annotation_extractor
14 clangAST 12 clangAST
15 clangASTMatchers 13 clangASTMatchers
16 clangAnalysis 14 clangAnalysis
17 clangBasic 15 clangBasic
18 clangDriver 16 clangDriver
19 clangEdit 17 clangEdit
20 clangFrontend 18 clangFrontend
21 clangLex 19 clangLex
22 clangParse 20 clangParse
23 clangSema 21 clangSema
24 clangSerialization 22 clangSerialization
25 clangTooling 23 clangTooling
26 ) 24 )
27 25
28 cr_install(TARGETS rewrite_scoped_refptr RUNTIME DESTINATION bin) 26 cr_install(TARGETS traffic_annotation_extractor RUNTIME DESTINATION bin)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698