summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Dodd <atd7@cornell.edu>2012-07-24 21:14:23 -0400
committerAndrew Dodd <atd7@cornell.edu>2012-07-24 21:14:23 -0400
commit74283aba092b4e98f2e16bf89202180006eecbf0 (patch)
tree6d2b4407b88030eeb4f64ce87419888c33233b6f
parent219723e8e2470bcc3f01366b2e8cb4b2d39e4a7a (diff)
downloaddevice_samsung_aries-common-74283aba092b4e98f2e16bf89202180006eecbf0.zip
device_samsung_aries-common-74283aba092b4e98f2e16bf89202180006eecbf0.tar.gz
device_samsung_aries-common-74283aba092b4e98f2e16bf89202180006eecbf0.tar.bz2
Do not include libsensors if TARGET_PROVIDES_LIBSENSORS is defined
Change-Id: Ibd1c690c936c703634b16ba93d31a66b34afac87
-rw-r--r--libsensors/Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/libsensors/Android.mk b/libsensors/Android.mk
index 228bfe7..8add1e7 100644
--- a/libsensors/Android.mk
+++ b/libsensors/Android.mk
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+ifneq ($(TARGET_PROVIDES_LIBSENSORS),true)
+
LOCAL_PATH := $(call my-dir)
ifneq ($(TARGET_SIMULATOR),true)
@@ -48,3 +50,5 @@ LOCAL_PRELINK_MODULE := false
include $(BUILD_SHARED_LIBRARY)
endif
+
+endif