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

Side by Side Diff: third_party/libva/style_unify

Issue 10375035: Add libva to chromium third_party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 file=$(find . -name "*.[ch]" -o -name "*.cpp")
3 for i in $file
4 do
5 echo $i
6 astyle --style=linux -s4 -c -s -p -U -H -n $i
7 done
8
9
10
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698