diff options
author | Josiah Gaskin <josiahgaskin@google.com> | 2011-06-14 13:57:09 -0700 |
---|---|---|
committer | Josiah Gaskin <josiahgaskin@google.com> | 2011-06-27 16:44:57 -0700 |
commit | 9bf34ca6f85309c65b0ebdf614cb8266401b49ba (patch) | |
tree | 50708801cb3c58aa23a32bc1a1ad39315e3aeff5 /tools/aapt/ZipFile.h | |
parent | ce89f1531ed8b96b8b790b3f8b18dd4cf483f7f0 (diff) |
Add dependency generation to Aapt for R.java
Make Aapt generate a dependency file in the location specified
by RClassDir for R.java if the --generate-dependencies flag is set.
This dependency file is then read by the ant exec loop task
to see whether to recreate R.java.
Change-Id: I7152dac86b6ea0e448ef65e3a95694afe233c789
Diffstat (limited to 'tools/aapt/ZipFile.h')
-rw-r--r-- | tools/aapt/ZipFile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt/ZipFile.h b/tools/aapt/ZipFile.h index dbbd072d1692..78775502884b 100644 --- a/tools/aapt/ZipFile.h +++ b/tools/aapt/ZipFile.h @@ -57,7 +57,7 @@ public: /* * Open a new or existing archive. */ - typedef enum { + enum { kOpenReadOnly = 0x01, kOpenReadWrite = 0x02, kOpenCreate = 0x04, // create if it doesn't exist |