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

Side by Side Diff: tools/binary_size/template/index.html

Issue 119083006: Add tool to help analyze binary size (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove extraneous comment from buildfile Created 6 years, 11 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Binary Size Analysis</title>
5 <link rel='stylesheet' href='webtreemap.css'>
6 <style>
7 body { font-family: sans-serif; text-align: center; }
8 tt, pre { font-family: WebKitWorkaround, monospace; }
9 #map {
10 width: 95%;
11 margin: 0 auto;
12 height: 800px;
13 position: relative;
14 cursor: pointer;
15 -webkit-user-select: none;
16 }
17 </style>
18 </head>
19 <body>
20 <script src='treemap-dump.js'></script>
21 <body>
22 <h1>Binary Size Analysis</h1>
23 <em>Click on a box to zoom in. Click on the outermost box to zoom out.</em>
24 <br>&nbsp;<br>
25 <div id='map'></div>
26 <script src='webtreemap.js'></script>
27 <script>
28 var map = document.getElementById('map');
29 appendTreemap(map, kTree);
30 </script>
31 </body>
32 </html>
OLDNEW
« tools/binary_size/run_binary_size_analysis.py ('K') | « tools/binary_size/template/.gitignore ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698