blob: f13a191e6127f328ee1fc58092a03cc9da2e9bdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#!/bin/bash
# Copyright (c) 2010 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.
ALL_DIRS="
ash/resources
ui/resources
chrome/app/theme
chrome/browser/resources
chrome/renderer/resources
webkit/glue/resources
remoting/resources
remoting/webapp
"
function sanitize_file {
tput el
echo -ne "$1\r"
local file=$1
local name=$(basename $file)
# -rem alla removes all ancillary chunks except for tRNS
pngcrush -d $TMP_DIR -brute -reduce -rem alla $file > /dev/null
mv "$TMP_DIR/$name" "$file"
}
function sanitize_dir {
local dir=$1
for f in $(find $dir -name "*.png"); do
sanitize_file $f
done
}
if [ ! -e ../.gclient ]; then
echo "$0 must be run in src directory"
exit 1
fi
# Make sure we have pngcrush installed.
dpkg -s pngcrush > /dev/null 2>&1
if [ "$?" != "0" ]; then
read -p "Couldn't fnd pngcrush. Do you want to install? (y/n)"
[ "$REPLY" == "y" ] && sudo apt-get install pngcrush
[ "$REPLY" == "y" ] || exit
fi
# Create tmp directory for crushed png file.
TMP_DIR=$(mktemp -d)
# Make sure we cleanup temp dir
trap "rm -rf $TMP_DIR" EXIT
# If no arguments passed, sanitize all directories.
DIRS=$*
set ${DIRS:=$ALL_DIRS}
for d in $DIRS; do
echo "Sanitizing png files in $d"
sanitize_dir $d
echo
done
|