diff options
| author | Douglas Leung <douglas.leung@imgtec.com> | 2015-02-26 18:49:50 -0800 |
|---|---|---|
| committer | Douglas Leung <douglas.leung@imgtec.com> | 2015-02-26 18:51:49 -0800 |
| commit | aba574085fd44356200fcdf350822960c2eb21f0 (patch) | |
| tree | 24864e1e6a042e280fcb830043f8aa4c6cecae9a | |
| parent | a770a09ca3346d8ec7cb4cdff90aaf83c8d2c5ff (diff) | |
| download | android_frameworks_webview-aba574085fd44356200fcdf350822960c2eb21f0.tar.gz android_frameworks_webview-aba574085fd44356200fcdf350822960c2eb21f0.tar.bz2 android_frameworks_webview-aba574085fd44356200fcdf350822960c2eb21f0.zip | |
Add version code support for mips64.
Change-Id: I2b71bdd83c105f9b45456b449ac91e3af0c57378
| -rw-r--r-- | chromium/version.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chromium/version.mk b/chromium/version.mk index fe4b6ae..9bf436d 100644 --- a/chromium/version.mk +++ b/chromium/version.mk @@ -26,6 +26,7 @@ # 1 : armv7-a # 2 : armv8-a (arm64) # 4 : mips +# 5 : mips64 # 7 : x86 # 8 : x86_64 # 64-bit architectures must be higher than their corresponding 32-bit @@ -54,6 +55,8 @@ ifeq "$(TARGET_ARCH)" "x86_64" version_arch := 8 else ifeq "$(TARGET_ARCH)" "x86" version_arch := 7 +else ifeq "$(TARGET_ARCH)" "mips64" + version_arch := 5 else ifeq "$(TARGET_ARCH)" "mips" version_arch := 4 else ifeq "$(TARGET_ARCH)" "arm64" |
