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

Side by Side Diff: Source/bindings/scripts/find-identical.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # Find JSON files that are identical
4 BLINK_DIR='/w/chr/src/third_party/WebKit'
5 PY_JSON_DIR="$BLINK_DIR/Source/bindings/scripts/JSON"
6 PL_JSON_DIR="$HOME/JSON-pl"
7 for PY_JSON in $PY_JSON_DIR/*.json
8 do
9 BASENAME=$(basename $PY_JSON)
10 PL_JSON="$PL_JSON_DIR/$BASENAME"
11 if cmp --quiet "$PY_JSON" "$PL_JSON"
12 then
13 echo "$BASENAME"
14 fi
15 done
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698