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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: tools/binary_size/template/index.html
diff --git a/tools/binary_size/template/index.html b/tools/binary_size/template/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..968f38c90011cf3d5d0d1031784196843b8a1704
--- /dev/null
+++ b/tools/binary_size/template/index.html
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Binary Size Analysis</title>
+ <link rel='stylesheet' href='webtreemap.css'>
+ <style>
+ body { font-family: sans-serif; text-align: center; }
+ tt, pre { font-family: WebKitWorkaround, monospace; }
+ #map {
+ width: 95%;
+ margin: 0 auto;
+ height: 800px;
+ position: relative;
+ cursor: pointer;
+ -webkit-user-select: none;
+ }
+ </style>
+</head>
+<body>
+<script src='treemap-dump.js'></script>
+<body>
+<h1>Binary Size Analysis</h1>
+<em>Click on a box to zoom in. Click on the outermost box to zoom out.</em>
+<br>&nbsp;<br>
+<div id='map'></div>
+<script src='webtreemap.js'></script>
+<script>
+ var map = document.getElementById('map');
+ appendTreemap(map, kTree);
+</script>
+</body>
+</html>
« 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