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 32 LOCAL_SRC_FILES := \ 33 wifi_hal.cpp \ 34 rtt.cpp \ 35 common.cpp \ 36 cpp_bindings.cpp \ 37 gscan.cpp \ 38 link_layer_stats.cpp 39 40 LOCAL_MODULE := libwifi-hal-bcm 41 42 include $(BUILD_STATIC_LIBRARY) 43 44