diff options
author | David 'Digit' Turner <digit@android.com> | 2011-08-23 22:25:13 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2011-08-23 22:25:13 +0200 |
commit | 43dd89d2a0c166525db0af4162b9b08aaa186aed (patch) | |
tree | c7efbdbb00a3c3715ae1aeb0fd3f0fe56f0bf8c9 | |
parent | 7c7a8f023af38e7e8be7cbb6acbe1ab770cdd704 (diff) | |
download | replicant_build-43dd89d2a0c166525db0af4162b9b08aaa186aed.zip replicant_build-43dd89d2a0c166525db0af4162b9b08aaa186aed.tar.gz replicant_build-43dd89d2a0c166525db0af4162b9b08aaa186aed.tar.bz2 |
emulator: Enable GLES emulation libraries
This patch enables the build of OpenGLES emulation libraries
(both in the guest and the host) for any emulator-specific
product config.
+ update core/main.mk to ensure that the right path is parsed
when building the Windows SDK
Change-Id: Ifde047f8c0ef922504a7286c8c5b57f7c79c71f8
-rw-r--r-- | core/main.mk | 1 | ||||
-rw-r--r-- | target/board/generic/BoardConfig.mk | 3 | ||||
-rw-r--r-- | target/board/generic_x86/BoardConfig.mk | 3 |
3 files changed, 7 insertions, 0 deletions
diff --git a/core/main.mk b/core/main.mk index b4282ee..7f37f0e 100644 --- a/core/main.mk +++ b/core/main.mk @@ -390,6 +390,7 @@ subdirs := \ development/host \ development/tools/etc1tool \ development/tools/line_endings \ + development/tools/emulator/opengl \ external/easymock \ external/expat \ external/libpng \ diff --git a/target/board/generic/BoardConfig.mk b/target/board/generic/BoardConfig.mk index 3ba648d..c8a0569 100644 --- a/target/board/generic/BoardConfig.mk +++ b/target/board/generic/BoardConfig.mk @@ -36,3 +36,6 @@ TARGET_SHELL := mksh ifeq ($(HOST_OS),linux) WITH_DEXPREOPT := true endif + +# Build OpenGLES emulation guest and host libraries +BUILD_EMULATOR_OPENGL := true diff --git a/target/board/generic_x86/BoardConfig.mk b/target/board/generic_x86/BoardConfig.mk index 0206434..5b6d50f 100644 --- a/target/board/generic_x86/BoardConfig.mk +++ b/target/board/generic_x86/BoardConfig.mk @@ -26,3 +26,6 @@ TARGET_SHELL := mksh ifeq ($(HOST_OS),linux) WITH_DEXPREOPT := true endif + +# Build OpenGLES emulation host and guest libraries +BUILD_EMULATOR_OPENGL := true |