OSDN Git Service

6628766b970c55b8564bda7df2ec7b8d558601fe
[android-x86/system-bt.git] / btif / 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 # Common variables
22 # ========================================================
23
24 # HAL layer
25 btifCommonSrc := \
26   src/bluetooth.c
27
28 # BTIF implementation
29 btifCommonSrc += \
30   src/btif_av.c \
31   src/btif_avrcp_audio_track.cpp \
32   src/btif_config.c \
33   src/btif_core.c \
34   src/btif_debug.c \
35   src/btif_debug_btsnoop.c \
36   src/btif_debug_conn.c \
37   src/btif_dm.c \
38   src/btif_gatt.c \
39   src/btif_gatt_client.c \
40   src/btif_gatt_multi_adv_util.c \
41   src/btif_gatt_server.c \
42   src/btif_gatt_test.c \
43   src/btif_gatt_util.c \
44   src/btif_hf.c \
45   src/btif_hf_client.c \
46   src/btif_hh.c \
47   src/btif_hl.c \
48   src/btif_sdp.c \
49   src/btif_media_task.c \
50   src/btif_pan.c \
51   src/btif_profile_queue.c \
52   src/btif_rc.c \
53   src/btif_sm.c \
54   src/btif_sock.c \
55   src/btif_sock_rfc.c \
56   src/btif_sock_l2cap.c \
57   src/btif_sock_sco.c \
58   src/btif_sock_sdp.c \
59   src/btif_sock_thread.c \
60   src/btif_sdp_server.c \
61   src/btif_sock_util.c \
62   src/btif_storage.c \
63   src/btif_uid.c \
64   src/btif_util.c \
65   src/stack_manager.c
66
67 # Callouts
68 btifCommonSrc += \
69   co/bta_ag_co.c \
70   co/bta_dm_co.c \
71   co/bta_av_co.c \
72   co/bta_hh_co.c \
73   co/bta_hl_co.c \
74   co/bta_pan_co.c \
75   co/bta_gatts_co.c
76
77 # Tests
78 btifTestSrc := \
79   test/btif_storage_test.cpp
80
81 # Includes
82 btifCommonIncludes := \
83   $(LOCAL_PATH)/../ \
84   $(LOCAL_PATH)/../bta/include \
85   $(LOCAL_PATH)/../bta/sys \
86   $(LOCAL_PATH)/../bta/dm \
87   $(LOCAL_PATH)/../btcore/include \
88   $(LOCAL_PATH)/../include \
89   $(LOCAL_PATH)/../stack/include \
90   $(LOCAL_PATH)/../stack/l2cap \
91   $(LOCAL_PATH)/../stack/a2dp \
92   $(LOCAL_PATH)/../stack/btm \
93   $(LOCAL_PATH)/../stack/avdt \
94   $(LOCAL_PATH)/../hcis \
95   $(LOCAL_PATH)/../hcis/include \
96   $(LOCAL_PATH)/../hcis/patchram \
97   $(LOCAL_PATH)/../udrv/include \
98   $(LOCAL_PATH)/../btif/include \
99   $(LOCAL_PATH)/../btif/co \
100   $(LOCAL_PATH)/../hci/include\
101   $(LOCAL_PATH)/../vnd/include \
102   $(LOCAL_PATH)/../brcm/include \
103   $(LOCAL_PATH)/../embdrv/sbc/encoder/include \
104   $(LOCAL_PATH)/../embdrv/sbc/decoder/include \
105   $(LOCAL_PATH)/../audio_a2dp_hw \
106   $(LOCAL_PATH)/../utils/include \
107   $(bluetooth_C_INCLUDES) \
108   external/zlib
109
110 # libbtif static library for target
111 # ========================================================
112 include $(CLEAR_VARS)
113 LOCAL_C_INCLUDES := $(btifCommonIncludes)
114 LOCAL_SRC_FILES := $(btifCommonSrc)
115 # Many .h files have redefined typedefs
116 LOCAL_SHARED_LIBRARIES := libcutils liblog
117 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
118 LOCAL_MODULE_TAGS := optional
119 LOCAL_MODULE := libbtif
120
121 LOCAL_CFLAGS += $(bluetooth_CFLAGS) -DBUILDCFG
122 LOCAL_CONLYFLAGS += $(bluetooth_CONLYFLAGS)
123 LOCAL_CPPFLAGS += $(bluetooth_CPPFLAGS)
124
125 include $(BUILD_STATIC_LIBRARY)
126
127 # btif unit tests for target
128 # ========================================================
129 include $(CLEAR_VARS)
130 LOCAL_C_INCLUDES := $(btifCommonIncludes)
131 LOCAL_SRC_FILES := $(btifTestSrc)
132 LOCAL_SHARED_LIBRARIES += liblog libhardware libhardware_legacy libcutils
133 LOCAL_STATIC_LIBRARIES += libbtcore libbtif libosi
134 LOCAL_MODULE_TAGS := optional
135 LOCAL_MODULE := net_test_btif
136
137 LOCAL_CFLAGS += $(bluetooth_CFLAGS) -DBUILDCFG
138 LOCAL_CONLYFLAGS += $(bluetooth_CONLYFLAGS)
139 LOCAL_CPPFLAGS += $(bluetooth_CPPFLAGS)
140
141 include $(BUILD_NATIVE_TEST)