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

Unified Diff: tools/binary_size/README.md

Issue 2801663003: //tools/binary_size: Add Disassemble() to console.py. Tweak metadata. (Closed)
Patch Set: Review comments 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
« no previous file with comments | « no previous file | tools/binary_size/console.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/binary_size/README.md
diff --git a/tools/binary_size/README.md b/tools/binary_size/README.md
index 6ee2c92ad01bf78613872c742561ff6cb847a809..54ddf40600e220709b9091d20d48d5283575a38e 100644
--- a/tools/binary_size/README.md
+++ b/tools/binary_size/README.md
@@ -1,17 +1,17 @@
# map2size.py
-Parses a linker .map(.gz) file and outputs the result as a .size(.gz) file.
+Parses a linker .map file and outputs the result as a .size file.
## Example Usage:
# Android:
gn gen out/Release --args='target_os="android" is_official_build=true'
ninja -C out/Release -j 1000 libchrome.so
- tools/binary_size/map2size.py out/Release/lib.unstripped/libchrome.so.map.gz chrome.size -v
+ tools/binary_size/map2size.py out/Release/lib.unstripped/libchrome.so chrome.size -v
# Linux:
gn gen out/Release --args='is_official_build=true'
ninja -C out/Release -j 1000 chrome
- tools/binary_size/map2size.py out/Release/chrome.map.gz chrome.size -v
+ tools/binary_size/map2size.py out/Release/chrome chrome.size -v
# create_html_breakdown.py
« no previous file with comments | « no previous file | tools/binary_size/console.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698