Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 This tool runs the clang tool for extraction of Network Traffic Annotations | |
| 2 from chromium source code and collects and summarizes it's outputs. | |
|
battre
2016/10/27 11:49:06
s/it's/its/
Ramin Halavati
2016/10/27 12:51:20
Done.
| |
| 3 | |
| 4 Build: | |
| 5 ninja -C [build directory] traffic_annotation_auditor | |
| 6 | |
| 7 Usage: | |
| 8 traffic_annotation_auditor [OPTION]... [path_filter]... | |
| 9 Extracts network traffic annotations from source files. If path filter(s) are | |
| 10 specified, only those directories of the source will be analyzed. | |
| 11 | |
| 12 Options: | |
| 13 -h, --help Shows this. | |
| 14 --build_dir Path to the build directory from which the | |
| 15 annotations will be extracted. | |
| 16 --extractor_output_dir Path to the directory that extracted | |
| 17 partial files will be written to. Will | |
| 18 be automatically generated and deleted | |
| 19 if not specified. | |
| 20 --extracted_input_dir Path to a directory where extracted | |
| 21 partial annotations are already stored. | |
| 22 If specified, build directory will be | |
| 23 ignored. | |
| 24 --summary_file Path to an ouput file with summary of | |
| 25 extracted annotations. | |
| 26 Example: | |
| 27 traffic_annotation_auditor --build_dir=out/Debug | |
| 28 --summery_file=report.txt | |
|
battre
2016/10/27 11:49:06
--summary_file
Ramin Halavati
2016/10/27 12:51:20
Done, also done in program's help text.
| |
| OLD | NEW |