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
commit82719737d99a523a97d10fe568639e3ca0dd7665 (patch)
tree35df80b1db99d30bb5bd72c3d9589db8c12c3df7 /nfc/Android.mk
parenta90a134ce86864add5c9bc305438a397adae687d (diff)
downloaddevice_samsung_tuna-82719737d99a523a97d10fe568639e3ca0dd7665.zip
device_samsung_tuna-82719737d99a523a97d10fe568639e3ca0dd7665.tar.gz
device_samsung_tuna-82719737d99a523a97d10fe568639e3ca0dd7665.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)