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> <br> |
+<div id='map'></div> |
+<script src='webtreemap.js'></script> |
+<script> |
+ var map = document.getElementById('map'); |
+ appendTreemap(map, kTree); |
+</script> |
+</body> |
+</html> |