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

Unified Diff: third_party/WebKit/Source/devtools/scripts/visualize_deps/visualize.sh

Issue 2629113003: DevTools: visualize dependencies using jquery.graphviz.svg (Closed)
Patch Set: Created 3 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: third_party/WebKit/Source/devtools/scripts/visualize_deps/visualize.sh
diff --git a/third_party/WebKit/Source/devtools/scripts/visualize_deps/visualize.sh b/third_party/WebKit/Source/devtools/scripts/visualize_deps/visualize.sh
new file mode 100755
index 0000000000000000000000000000000000000000..800cc9f83f92bdfeb31f7af091cde79339e370c1
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/scripts/visualize_deps/visualize.sh
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+# Copyright (c) 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+node generate_dot.js
+dot -O -Tsvg out/dependencies.dot
+
+echo ""
+echo "Run: python -m SimpleHTTPServer 8001"
+echo "Go to: http://localhost:8001/jquery_svg.html"

Powered by Google App Engine
This is Rietveld 408576698