forked from openkylin/platform_build
This patch addresses the following issues:
1. Fix a typo. 2. Include libffi in the MIPS list of Product Packages. 3. Default to JSC for MIPS until the MIPS support in v8 lands in aosp.
This commit is contained in:
parent
fed2587c16
commit
f70dec9281
|
@ -26,7 +26,7 @@ TARGET_ARCH := mips
|
||||||
ifeq (,$(TARGET_ARCH_VARIANT))
|
ifeq (,$(TARGET_ARCH_VARIANT))
|
||||||
TARGET_ARCH_VARIANT := mips32r2-fp
|
TARGET_ARCH_VARIANT := mips32r2-fp
|
||||||
endif
|
endif
|
||||||
GET_CPU_ABI := mips
|
TARGET_CPU_ABI := mips
|
||||||
|
|
||||||
HAVE_HTC_AUDIO_DRIVER := true
|
HAVE_HTC_AUDIO_DRIVER := true
|
||||||
BOARD_USES_GENERIC_AUDIO := true
|
BOARD_USES_GENERIC_AUDIO := true
|
||||||
|
@ -51,3 +51,7 @@ BUILD_EMULATOR_OPENGL := true
|
||||||
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
||||||
# the GLES renderer disables itself if host GL acceleration isn't available.
|
# the GLES renderer disables itself if host GL acceleration isn't available.
|
||||||
USE_OPENGL_RENDERER := true
|
USE_OPENGL_RENDERER := true
|
||||||
|
|
||||||
|
# Default to JSC until we get v8 landed
|
||||||
|
HTTP := android
|
||||||
|
JS_ENGINE := jsc
|
||||||
|
|
|
@ -27,4 +27,5 @@ PRODUCT_COPY_FILES := \
|
||||||
development/tools/emulator/system/camera/media_profiles.xml:system/etc/media_profiles.xml
|
development/tools/emulator/system/camera/media_profiles.xml:system/etc/media_profiles.xml
|
||||||
|
|
||||||
PRODUCT_PACKAGES := \
|
PRODUCT_PACKAGES := \
|
||||||
audio.primary.goldfish
|
audio.primary.goldfish \
|
||||||
|
libffi
|
||||||
|
|
Loading…
Reference in New Issue