OSDN Git Service

am 91c7bdc6: am 9f1c9ad8: GKI cleanup - Moved struct TIMER_LIST_ENT to OSI
[android-x86/system-bt.git] / device / Android.mk
1  ##############################################################################
2  #
3  #  Copyright (C) 2014 Google, Inc.
4  #
5  #  Licensed under the Apache License, Version 2.0 (the "License");
6  #  you may not use this file except in compliance with the License.
7  #  You may obtain a copy of the License at:
8  #
9  #  http://www.apache.org/licenses/LICENSE-2.0
10  #
11  #  Unless required by applicable law or agreed to in writing, software
12  #  distributed under the License is distributed on an "AS IS" BASIS,
13  #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  #  See the License for the specific language governing permissions and
15  #  limitations under the License.
16  #
17  ##############################################################################
18
19 LOCAL_PATH := $(call my-dir)
20
21 include $(CLEAR_VARS)
22
23 LOCAL_C_INCLUDES := \
24     $(LOCAL_PATH)/.. \
25     $(LOCAL_PATH)/include \
26     $(LOCAL_PATH)/../btcore/include \
27     $(LOCAL_PATH)/../hci/include \
28     $(LOCAL_PATH)/../include \
29     $(LOCAL_PATH)/../stack/include \
30     $(bdroid_C_INCLUDES)
31
32 LOCAL_SRC_FILES := \
33     src/classic/peer.c \
34     src/controller.c \
35     src/interop.c
36
37 LOCAL_CFLAGS := -std=c99 $(bdroid_CFLAGS)
38 LOCAL_MODULE := libbtdevice
39 LOCAL_MODULE_TAGS := optional
40 LOCAL_SHARED_LIBRARIES := libc liblog
41 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
42
43 include $(BUILD_STATIC_LIBRARY)
44
45 #####################################################
46
47 include $(CLEAR_VARS)
48
49 LOCAL_C_INCLUDES := \
50     $(LOCAL_PATH)/.. \
51     $(bdroid_C_INCLUDES)
52
53 LOCAL_SRC_FILES := \
54     ../osi/test/AllocationTestHarness.cpp \
55     ./test/interop_test.cpp \
56     ./test/classic/peer_test.cpp
57
58 LOCAL_CFLAGS := -Wall -Werror -Werror=unused-variable
59 LOCAL_MODULE := net_test_device
60 LOCAL_MODULE_TAGS := tests
61 LOCAL_SHARED_LIBRARIES := liblog libdl libpower
62 LOCAL_STATIC_LIBRARIES := libbtdevice libbtcore libosi libcutils
63
64 include $(BUILD_NATIVE_TEST)