summaryrefslogtreecommitdiffstats
path: root/nfc/Android.mk
diff options
context:
space:
mode:
authorMartijn Coenen <maco@google.com>2011-11-02 15:57:19 -0700
committerMartijn Coenen <maco@google.com>2011-11-04 14:21:22 -0700
commit196d0295292f84daaba4616a5cf7caa890a5ff15 (patch)
treed4a1c1b9d194cdcea0c5a3cb4a9437fd940aa682 /nfc/Android.mk
parentc751e5c03eb1c08e627eb7419124c9468796781e (diff)
downloaddevice_samsung_tuna-196d0295292f84daaba4616a5cf7caa890a5ff15.zip
device_samsung_tuna-196d0295292f84daaba4616a5cf7caa890a5ff15.tar.gz
device_samsung_tuna-196d0295292f84daaba4616a5cf7caa890a5ff15.tar.bz2
NFC: HAL implementation for tuna.
Change-Id: I6452b5b5baeaebe9798b77e78ffbf318d6a05cd9
Diffstat (limited to 'nfc/Android.mk')
-rw-r--r--nfc/Android.mk25
1 files changed, 25 insertions, 0 deletions
diff --git a/nfc/Android.mk b/nfc/Android.mk
new file mode 100644
index 0000000..000b5ae
--- /dev/null
+++ b/nfc/Android.mk
@@ -0,0 +1,25 @@
+# Copyright (C) 2011 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := nfc.tuna
+LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
+LOCAL_SRC_FILES := nfc_hw.c
+LOCAL_SHARED_LIBRARIES := liblog libcutils
+LOCAL_MODULE_TAGS := optional
+
+include $(BUILD_SHARED_LIBRARY)