mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-10 02:18:57 +00:00
36 lines
1.3 KiB
Makefile
36 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/.
|
|
|
|
ANDROID_APK_NAME := background-junit3-debug
|
|
|
|
ANDROID_EXTRA_JARS := \
|
|
background-junit3.jar \
|
|
$(NULL)
|
|
|
|
PP_TARGETS += manifest
|
|
manifest := $(srcdir)/AndroidManifest.xml.in
|
|
manifest_TARGET := AndroidManifest.xml
|
|
manifest_FLAGS += \
|
|
-DANDROID_BACKGROUND_TARGET_PACKAGE_NAME='$(ANDROID_PACKAGE_NAME)' \
|
|
-DANDROID_BACKGROUND_APP_DISPLAYNAME='$(MOZ_APP_DISPLAYNAME) Background Tests' \
|
|
-DMOZ_ANDROID_SHARED_ID='$(ANDROID_PACKAGE_NAME).sharedID' \
|
|
-DMOZ_ANDROID_SHARED_ACCOUNT_TYPE='$(ANDROID_PACKAGE_NAME)_sync' \
|
|
$(NULL)
|
|
ANDROID_MANIFEST_FILE := $(CURDIR)/AndroidManifest.xml
|
|
|
|
GARBAGE += AndroidManifest.xml
|
|
|
|
# The test APK needs to know the contents of the target APK while not
|
|
# being linked against them. This is a best effort to avoid getting
|
|
# out of sync with base's build config.
|
|
JARS_DIR := $(DEPTH)/mobile/android/base
|
|
JAVA_BOOTCLASSPATH := $(ANDROID_SDK)/android.jar:$(subst $(NULL) ,:,$(wildcard $(JARS_DIR)/*.jar))
|
|
# We also want to re-compile classes.dex when the associated base
|
|
# content changes.
|
|
classes.dex: $(wildcard $(JARS_DIR)/*.jar)
|
|
|
|
tools:: $(ANDROID_APK_NAME).apk
|
|
|
|
include $(topsrcdir)/config/rules.mk
|