diff options
Diffstat (limited to 'libdexfile/dex/compact_dex_level.h')
-rw-r--r-- | libdexfile/dex/compact_dex_level.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libdexfile/dex/compact_dex_level.h b/libdexfile/dex/compact_dex_level.h index 2f06688e8e..e6b5446b5f 100644 --- a/libdexfile/dex/compact_dex_level.h +++ b/libdexfile/dex/compact_dex_level.h @@ -17,10 +17,6 @@ #ifndef ART_LIBDEXFILE_DEX_COMPACT_DEX_LEVEL_H_ #define ART_LIBDEXFILE_DEX_COMPACT_DEX_LEVEL_H_ -#include <string> - -#include "dex_file.h" - namespace art { // Optimization level for compact dex generation. @@ -32,18 +28,6 @@ enum class CompactDexLevel { kCompactDexLevelFast, }; -#ifdef ART_DEFAULT_COMPACT_DEX_LEVEL -#define ART_DEFAULT_COMPACT_DEX_LEVEL_VALUE_fast CompactDexLevel::kCompactDexLevelFast -#define ART_DEFAULT_COMPACT_DEX_LEVEL_VALUE_none CompactDexLevel::kCompactDexLevelNone - -#define ART_DEFAULT_COMPACT_DEX_LEVEL_DEFAULT APPEND_TOKENS_AFTER_EVAL( \ - ART_DEFAULT_COMPACT_DEX_LEVEL_VALUE_, \ - ART_DEFAULT_COMPACT_DEX_LEVEL) - -static_assert(ART_DEFAULT_COMPACT_DEX_LEVEL_DEFAULT == CompactDexLevel::kCompactDexLevelNone, - "ART_DEFAULT_COMPACT_DEX_LEVEL_DEFAULT != none is no longer supported"); -#endif - } // namespace art #endif // ART_LIBDEXFILE_DEX_COMPACT_DEX_LEVEL_H_ |