Home | History | Annotate | Download | only in wifi_hal
      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 
     15 LOCAL_PATH := $(call my-dir)
     16 
     17 # Make the HAL library
     18 # ============================================================
     19 include $(CLEAR_VARS)
     20 
     21 LOCAL_REQUIRED_MODULES :=
     22 
     23 LOCAL_CFLAGS += -Wno-unused-parameter -Wno-int-to-pointer-cast
     24 LOCAL_CFLAGS += -Wno-maybe-uninitialized -Wno-parentheses
     25 LOCAL_CPPFLAGS += -Wno-conversion-null
     26 
     27 LOCAL_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 
     34 LOCAL_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 
     43 LOCAL_MODULE := libwifi-hal-qcom
     44 LOCAL_SHARED_LIBRARIES += libnetutils liblog
     45 
     46 ifneq ($(wildcard external/libnl),)
     47 LOCAL_SHARED_LIBRARIES += libnl
     48 LOCAL_C_INCLUDES += external/libnl/include
     49 else
     50 LOCAL_SHARED_LIBRARIES += libnl_2
     51 LOCAL_C_INCLUDES += external/libnl-headers
     52 endif
     53 
     54 include $(BUILD_STATIC_LIBRARY)
     55 
     56