From 4bbd47e5507d4c47a4d722216606307e45195a0a Mon Sep 17 00:00:00 2001 From: Martijn Coenen Date: Wed, 25 Jul 2012 08:56:11 -0700 Subject: Move NXP JNI and DeviceHost implementation into separate dir. Preparation for the new NCI stack. The idea is to build either the NXP or the NCI stack, triggered by a makefile switch. To that end, move the DeviceHost and JNI implementations in their own directory, so we can build them only if needed. Change-Id: I8579ec30ceb1908e4cd180cfbd10224aa4bddb8d --- Android.mk | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Android.mk') diff --git a/Android.mk b/Android.mk index a041854..2cdfc68 100644 --- a/Android.mk +++ b/Android.mk @@ -6,6 +6,14 @@ LOCAL_MODULE_TAGS := optional LOCAL_SRC_FILES := \ $(call all-java-files-under, src) +ifeq ($(NFC_USE_NCI_STACK), true) + LOCAL_SRC_FILES += \ + $(call all-java-files-under, nci) +else + LOCAL_SRC_FILES += \ + $(call all-java-files-under, nxp) +endif + LOCAL_PACKAGE_NAME := Nfc LOCAL_CERTIFICATE := platform -- cgit v1.1