• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
17# Make the HAL library
18# ============================================================
19include $(CLEAR_VARS)
20
21LOCAL_REQUIRED_MODULES :=
22
23LOCAL_CFLAGS += -Wno-unused-parameter -Wno-int-to-pointer-cast
24LOCAL_CFLAGS += -Wno-maybe-uninitialized -Wno-parentheses
25LOCAL_CPPFLAGS += -Wno-conversion-null
26
27LOCAL_C_INCLUDES += \
28	external/libnl/include \
29	$(call include-path-for, libhardware_legacy)/hardware_legacy \
30	external/wpa_supplicant_8/src/drivers \
31	$(TARGET_OUT_HEADERS)/libwpa_client \
32	$(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
33
34LOCAL_SRC_FILES := \
35	wifi_hal.cpp \
36	common.cpp \
37	cpp_bindings.cpp \
38	llstats.cpp \
39	gscan.cpp \
40	gscan_event_handler.cpp \
41	rtt.cpp
42
43LOCAL_MODULE := libwifi-hal-qcom
44LOCAL_SHARED_LIBRARIES += libnetutils liblog
45
46ifneq ($(wildcard external/libnl),)
47LOCAL_SHARED_LIBRARIES += libnl
48LOCAL_C_INCLUDES += external/libnl/include
49else
50LOCAL_SHARED_LIBRARIES += libnl_2
51LOCAL_C_INCLUDES += external/libnl-headers
52endif
53
54include $(BUILD_STATIC_LIBRARY)
55
56