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

Unified Diff: tools/binary_size/describe.py

Issue 2775173005: FREEZE.unindexed (Closed)
Patch Set: ps2 Created 3 years, 9 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 | « tools/binary_size/create_html_breakdown.py ('k') | tools/binary_size/file_format.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/binary_size/describe.py
diff --git a/tools/binary_size/describe.py b/tools/binary_size/describe.py
index f64992da1e1b877aa40e836daa7d5a36ce68478c..3f4b3e06ff9857ed51fa87e58ad22390461bf369 100644
--- a/tools/binary_size/describe.py
+++ b/tools/binary_size/describe.py
@@ -35,7 +35,8 @@ class Describer(object):
return
yield '{}@0x{:<8x} {:<7} {}'.format(
- sym.section, sym.address, sym.size, sym.path or '<no path>')
+ sym.section, sym.address, sym.size,
+ sym.source_path or sym.object_path or '{no path}')
if sym.name:
yield '{:22}{}'.format('', sym.name)
« no previous file with comments | « tools/binary_size/create_html_breakdown.py ('k') | tools/binary_size/file_format.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698