X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/dadd9c1fc18bd05c84a357b56e945b5829b3bd95..9f3378f91c0d47420b398f27d2b2640c52b9fd2a:/Main.h diff --git a/Main.h b/Main.h index 65c0a8a..d20c601 100644 --- a/Main.h +++ b/Main.h @@ -6,10 +6,21 @@ #ifndef __MAIN_H #define __MAIN_H -#include +#include +#include +#include +#include #include "Bundle.h" #include "AaptAssets.h" -#include +#include "ZipFile.h" + + +/* Benchmarking Flag */ +//#define BENCHMARK 1 + +#if BENCHMARK + #include +#endif /* BENCHMARK */ extern int doVersion(Bundle* bundle); extern int doList(Bundle* bundle); @@ -17,6 +28,7 @@ extern int doDump(Bundle* bundle); extern int doAdd(Bundle* bundle); extern int doRemove(Bundle* bundle); extern int doPackage(Bundle* bundle); +extern int doCrunch(Bundle* bundle); extern int calcPercent(long uncompressedLen, long compressedLen); @@ -24,12 +36,16 @@ extern android::status_t writeAPK(Bundle* bundle, const sp& assets, const android::String8& outputFile); +extern android::status_t updatePreProcessedCache(Bundle* bundle); + extern android::status_t buildResources(Bundle* bundle, const sp& assets); extern android::status_t writeResourceSymbols(Bundle* bundle, const sp& assets, const String8& pkgName, bool includePrivate); +extern android::status_t writeProguardFile(Bundle* bundle, const sp& assets); + extern bool isValidResourceType(const String8& type); ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp& assets); @@ -38,4 +54,9 @@ extern status_t filterResources(Bundle* bundle, const sp& assets); int dumpResources(Bundle* bundle); +String8 getAttribute(const ResXMLTree& tree, const char* ns, + const char* attr, String8* outError); + +status_t writeDependencyPreReqs(Bundle* bundle, const sp& assets, + FILE* fp, bool includeRaw); #endif // __MAIN_H