mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e797d0b7b5
This incorporates follow-ups including: rename the debug key; check if key alias exists rather than just testing for keystore existence; set $(AIDL). Renaming the debug key works around an un-confirmed JDK bug in jarsigner, where '-debug' and 'debug' compare the same.
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# Ensure JAVA_CLASSPATH and ANDROID_SDK are defined before including this file.
|
|
# We use common android defaults for boot class path and java version.
|
|
ifndef ANDROID_SDK
|
|
$(error ANDROID_SDK must be defined before including android-common.mk)
|
|
endif
|
|
|
|
ifndef JAVA_CLASSPATH
|
|
$(error JAVA_CLASSPATH must be defined before including android-common.mk)
|
|
endif
|
|
|
|
DX=$(ANDROID_BUILD_TOOLS)/dx
|
|
AAPT=$(ANDROID_BUILD_TOOLS)/aapt
|
|
AIDL=$(ANDROID_BUILD_TOOLS)/aidl
|
|
ADB=$(ANDROID_PLATFORM_TOOLS)/adb
|
|
ZIPALIGN=$(ANDROID_SDK)/../../tools/zipalign
|
|
# DEBUG_JARSIGNER always debug signs.
|
|
DEBUG_JARSIGNER=$(PYTHON) $(call core_abspath,$(topsrcdir)/mobile/android/debug_sign_tool.py)
|
|
|
|
# For Android, this defaults to $(ANDROID_SDK)/android.jar
|
|
ifndef JAVA_BOOTCLASSPATH
|
|
JAVA_BOOTCLASSPATH = $(ANDROID_SDK)/android.jar:$(ANDROID_COMPAT_LIB)
|
|
endif
|
|
|
|
# For Android, we default to 1.5
|
|
ifndef JAVA_VERSION
|
|
JAVA_VERSION = 1.5
|
|
endif
|
|
|
|
JAVAC_FLAGS = \
|
|
-target $(JAVA_VERSION) \
|
|
-source $(JAVA_VERSION) \
|
|
-classpath $(JAVA_CLASSPATH) \
|
|
-bootclasspath $(JAVA_BOOTCLASSPATH) \
|
|
-encoding UTF8 \
|
|
-g:source,lines \
|
|
-Werror \
|
|
$(NULL)
|