Android.mk revision 669b742f9eb6da6df30bd225f4ec0d9185d7632b
1# Copyright (C) 2011 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH := $(call my-dir)
16
17ifeq ($(TARGET_DEVICE),grouper)
18
19include $(CLEAR_VARS)
20LOCAL_MODULE := btmacreader
21LOCAL_SRC_FILES := btmacreader
22LOCAL_MODULE_CLASS := EXECUTABLES
23LOCAL_MODULE_PATH := $(TARGET_OUT_EXECUTABLES)
24LOCAL_MODULE_TAGS := optional
25LOCAL_MODULE_OWNER := asus
26include $(BUILD_PREBUILT)
27
28include $(CLEAR_VARS)
29LOCAL_MODULE := camera.tegra3
30LOCAL_SRC_FILES := camera.tegra3.so
31LOCAL_MODULE_SUFFIX := .so
32LOCAL_MODULE_CLASS := SHARED_LIBRARIES
33LOCAL_MODULE_PATH := $(TARGET_OUT)/lib/hw
34LOCAL_MODULE_TAGS := optional
35LOCAL_MODULE_OWNER := asus
36include $(BUILD_PREBUILT)
37
38include $(CLEAR_VARS)
39LOCAL_MODULE := libsensors.lightsensor
40LOCAL_SRC_FILES := libsensors.lightsensor.so
41LOCAL_MODULE_SUFFIX := .so
42LOCAL_MODULE_CLASS := SHARED_LIBRARIES
43LOCAL_MODULE_PATH := $(TARGET_OUT)/lib
44LOCAL_MODULE_TAGS := optional
45LOCAL_MODULE_OWNER := asus
46include $(BUILD_PREBUILT)
47
48endif
49