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

Unified Diff: Source/bindings/scripts/test-py-json.sh

Issue 15801003: IDL parser rewrite in Python (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: [WIP] Full parser Created 7 years, 6 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: Source/bindings/scripts/test-py-json.sh
diff --git a/Source/bindings/scripts/test-py-json.sh b/Source/bindings/scripts/test-py-json.sh
new file mode 100755
index 0000000000000000000000000000000000000000..65daa0fb12ff5fba320ad0e20c6fb234004f994b
--- /dev/null
+++ b/Source/bindings/scripts/test-py-json.sh
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+BLINK_DIR='/w/chr/src/third_party/WebKit'
+# BLINK_DIR='/w/blink'
+for i in $(find $BLINK_DIR/Source/core $BLINK_DIR/Source/modules -name '*.idl' | xargs grep "^#" -L)
+do
+ # echo "$i"
+ ./dump_ir.py "$i"
+ #then
+ # # echo -e "Failed:\n$i"
+ #fi
+done

Powered by Google App Engine
This is Rietveld 408576698