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

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

Issue 2448133006: Tool added to extract network traffic annotations. (Closed)
Patch Set: Comments addressed. Created 3 years, 8 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
« no previous file with comments | « third_party/protobuf/BUILD.gn ('k') | tools/clang/traffic_annotation_extractor/README.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 set(LLVM_LINK_COMPONENTS
2 BitReader
3 MCParser
4 Option
5 )
6
7 add_llvm_executable(traffic_annotation_extractor
8 traffic_annotation_extractor.cpp
9 )
10
11 target_link_libraries(traffic_annotation_extractor
12 clangAST
13 clangASTMatchers
14 clangAnalysis
15 clangBasic
16 clangDriver
17 clangEdit
18 clangFrontend
19 clangLex
20 clangParse
21 clangSema
22 clangSerialization
23 clangTooling
24 )
25
26 cr_install(TARGETS traffic_annotation_extractor RUNTIME DESTINATION bin)
OLDNEW
« no previous file with comments | « third_party/protobuf/BUILD.gn ('k') | tools/clang/traffic_annotation_extractor/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698