diff options
author | 2015-12-01 10:34:37 -0800 | |
---|---|---|
committer | 2015-12-01 18:37:12 +0000 | |
commit | 90d5052bd71b4b58069fd830834daf8dad339ef0 (patch) | |
tree | 179b5cdfa02be50323c1b11968c8ea88296b35e7 | |
parent | 32363a023a693f78ca584f06e7780354c300d59a (diff) |
Don't try to compress .webm resources
Bug: 25822610
Change-Id: I40a93c9daac258a8e9a41668c0040353e44ed5bb
-rw-r--r-- | tools/aapt/Package.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/Package.cpp b/tools/aapt/Package.cpp index cb244eccfe21..641c34bd2dda 100644 --- a/tools/aapt/Package.cpp +++ b/tools/aapt/Package.cpp @@ -33,7 +33,7 @@ static const char* kNoCompressExt[] = { ".mpg", ".mpeg", ".mid", ".midi", ".smf", ".jet", ".rtttl", ".imy", ".xmf", ".mp4", ".m4a", ".m4v", ".3gp", ".3gpp", ".3g2", ".3gpp2", - ".amr", ".awb", ".wma", ".wmv" + ".amr", ".awb", ".wma", ".wmv", ".webm" }; /* fwd decls, so I can write this downward */ |