We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 460abe9 + 30768cf commit 9b2b052Copy full SHA for 9b2b052
media/libstagefright/Android.mk
@@ -95,11 +95,11 @@ LOCAL_STATIC_LIBRARIES := \
95
# currently must follow the same logic to determine how webkit was built and
96
# if it's safe to link against libchromium.net
97
98
-# V8 also requires an ARMv7 & x86 CPU, and since we must use jsc, we cannot
+# On ARM, V8 also requires an ARMv7 CPU, and since we must use jsc, we cannot
99
# use the Chrome http stack either.
100
-ifneq ($(strip $(ARCH_ARM_HAVE_ARMV7A)),true)
101
- ifneq ($(TARGET_ARCH),x86)
102
- USE_ALT_HTTP := true
+ifeq ($(TARGET_ARCH),arm)
+ ifneq ($(strip $(ARCH_ARM_HAVE_ARMV7A)),true)
+ USE_ALT_HTTP := true
103
endif
104
105
0 commit comments