diff options
Diffstat (limited to 'tools/aapt/Main.h')
-rw-r--r-- | tools/aapt/Main.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tools/aapt/Main.h b/tools/aapt/Main.h index 1df1144..d20c601 100644 --- a/tools/aapt/Main.h +++ b/tools/aapt/Main.h @@ -14,12 +14,21 @@ #include "AaptAssets.h" #include "ZipFile.h" + +/* Benchmarking Flag */ +//#define BENCHMARK 1 + +#if BENCHMARK + #include <time.h> +#endif /* BENCHMARK */ + extern int doVersion(Bundle* bundle); extern int doList(Bundle* bundle); 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); @@ -27,6 +36,8 @@ extern android::status_t writeAPK(Bundle* bundle, const sp<AaptAssets>& assets, const android::String8& outputFile); +extern android::status_t updatePreProcessedCache(Bundle* bundle); + extern android::status_t buildResources(Bundle* bundle, const sp<AaptAssets>& assets); @@ -46,5 +57,6 @@ int dumpResources(Bundle* bundle); String8 getAttribute(const ResXMLTree& tree, const char* ns, const char* attr, String8* outError); -status_t writeDependencyPreReqs(Bundle* bundle, const sp<AaptAssets>& assets, FILE* fp); +status_t writeDependencyPreReqs(Bundle* bundle, const sp<AaptAssets>& assets, + FILE* fp, bool includeRaw); #endif // __MAIN_H |