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

Unified Diff: tools/traffic_annotation/auditor/README.md

Issue 2448133006: Tool added to extract network traffic annotations. (Closed)
Patch Set: nits 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 side-by-side diff with in-line comments
Download patch
Index: tools/traffic_annotation/auditor/README.md
diff --git a/tools/traffic_annotation/auditor/README.md b/tools/traffic_annotation/auditor/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..9e124e7fac467b51ad694bf52c4f1beeb55392fe
--- /dev/null
+++ b/tools/traffic_annotation/auditor/README.md
@@ -0,0 +1,23 @@
+# Network Traffic Annotation Auditor
+This tool runs the clang tool for extraction of Network Traffic Annotations
+from chromium source code and collects and summarizes its outputs.
+
+## Building
+`ninja -C [build directory] trafmarkfic_annotation_auditor`
battre 2017/04/10 10:58:31 trafmarkfic?
Ramin Halavati 2017/04/10 13:05:57 Done!
+
+## Usage
+`traffic_annotation_auditor [OPTION]... [path_filter]...`
+Extracts network traffic annotations from source files. If path filter(s) are
+specified, only those directories of the source will be analyzed.
+Run `traffic_annotation_auditor --help` for options.
+
+Example:
+ `traffic_annotation_auditor --build-dir=out/Debug --summary-file=report.txt`
+
+
+## Running on Windows
+Before running the program as above, you should build COMPLETE chromium with
+clang with keeprsp switch as follows:
+1. `gn args [build_dir, e.g. out\Debug]`
+2. add `is_clang=true` to the opened text file and save and close it.
+3. `ninja -C [build_dir] -d keeprsp -k 1000`

Powered by Google App Engine
This is Rietveld 408576698