aboutsummaryrefslogtreecommitdiff
path: root/catapult/devil/devil/android/ndk/abis.py
diff options
context:
space:
mode:
Diffstat (limited to 'catapult/devil/devil/android/ndk/abis.py')
-rw-r--r--catapult/devil/devil/android/ndk/abis.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/catapult/devil/devil/android/ndk/abis.py b/catapult/devil/devil/android/ndk/abis.py
new file mode 100644
index 00000000..dd32f7cb
--- /dev/null
+++ b/catapult/devil/devil/android/ndk/abis.py
@@ -0,0 +1,16 @@
+# Copyright 2019 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Android NDK ABIs.
+
+https://developer.android.com/ndk/guides/abis
+
+These constants can be compared against the value of
+devil.android.DeviceUtils.product_cpu_abi.
+"""
+
+ARM = 'armeabi-v7a'
+ARM_64 = 'arm64-v8a'
+X86 = 'x86'
+X86_64 = 'x86_64'