diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2017-01-19 23:40:02 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2017-01-19 23:40:06 +0000 |
commit | 1f9f11007db09bbbc156965e77b10de82a32a544 (patch) | |
tree | e715a9edb691da38726c2c5487625bd35b05ec94 /tools/aapt2/compile/Png.cpp | |
parent | 12375e9e0d14868cf63c0d6584c7a7d9440c30c4 (diff) | |
parent | d5083f6f6b9bc76bbe64052bcec639eee752a321 (diff) |
Merge "Move StringPiece to libandroidfw"
Diffstat (limited to 'tools/aapt2/compile/Png.cpp')
-rw-r--r-- | tools/aapt2/compile/Png.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/tools/aapt2/compile/Png.cpp b/tools/aapt2/compile/Png.cpp index 7ab05b58b8b9..5e15c88410ee 100644 --- a/tools/aapt2/compile/Png.cpp +++ b/tools/aapt2/compile/Png.cpp @@ -15,18 +15,21 @@ */ #include "Png.h" -#include "Source.h" -#include "util/BigBuffer.h" -#include "util/Util.h" -#include <androidfw/ResourceTypes.h> #include <png.h> #include <zlib.h> + #include <iostream> #include <sstream> #include <string> #include <vector> +#include "androidfw/ResourceTypes.h" + +#include "Source.h" +#include "util/BigBuffer.h" +#include "util/Util.h" + namespace aapt { constexpr bool kDebug = false; |