Roshan Pius | 3c4e8a3 | 2016-10-03 14:53:58 -0700 | [diff] [blame] | 1 | # Copyright (C) 2016 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 | LOCAL_PATH := $(call my-dir) |
| 15 | |
| 16 | include $(CLEAR_VARS) |
Roshan Pius | 23f9f30 | 2016-10-24 13:33:51 -0700 | [diff] [blame] | 17 | LOCAL_MODULE := android.hardware.wifi@1.0-service |
Roshan Pius | 3c4e8a3 | 2016-10-03 14:53:58 -0700 | [diff] [blame] | 18 | LOCAL_MODULE_RELATIVE_PATH := hw |
Steven Moreland | fd46bce | 2016-11-30 11:47:49 -0800 | [diff] [blame] | 19 | LOCAL_CPPFLAGS := -Wall -Wno-unused-parameter -Werror -Wextra |
Roshan Pius | 3c4e8a3 | 2016-10-03 14:53:58 -0700 | [diff] [blame] | 20 | LOCAL_SRC_FILES := \ |
Roshan Pius | e65edb1 | 2016-11-22 13:02:01 -0800 | [diff] [blame^] | 21 | hidl_struct_util.cpp \ |
Roshan Pius | 23f9f30 | 2016-10-24 13:33:51 -0700 | [diff] [blame] | 22 | service.cpp \ |
Roshan Pius | 3c4e8a3 | 2016-10-03 14:53:58 -0700 | [diff] [blame] | 23 | wifi.cpp \ |
Roshan Pius | 3e2d671 | 2016-10-06 13:16:23 -0700 | [diff] [blame] | 24 | wifi_ap_iface.cpp \ |
| 25 | wifi_chip.cpp \ |
| 26 | wifi_legacy_hal.cpp \ |
| 27 | wifi_nan_iface.cpp \ |
| 28 | wifi_p2p_iface.cpp \ |
Roshan Pius | 5926828 | 2016-10-06 20:23:47 -0700 | [diff] [blame] | 29 | wifi_rtt_controller.cpp \ |
Roshan Pius | 1922482 | 2016-10-11 08:21:46 -0700 | [diff] [blame] | 30 | wifi_sta_iface.cpp \ |
| 31 | wifi_status_util.cpp |
Roshan Pius | 3c4e8a3 | 2016-10-03 14:53:58 -0700 | [diff] [blame] | 32 | LOCAL_SHARED_LIBRARIES := \ |
| 33 | android.hardware.wifi@1.0 \ |
| 34 | libbase \ |
| 35 | libcutils \ |
Yifan Hong | 63544ea | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 36 | libhidlbase \ |
| 37 | libhidltransport \ |
Roshan Pius | 3c4e8a3 | 2016-10-03 14:53:58 -0700 | [diff] [blame] | 38 | libhwbinder \ |
| 39 | liblog \ |
| 40 | libnl \ |
Roshan Pius | 908a69a | 2016-10-03 13:33:23 -0700 | [diff] [blame] | 41 | libutils \ |
| 42 | libwifi-system |
Roshan Pius | 3c4e8a3 | 2016-10-03 14:53:58 -0700 | [diff] [blame] | 43 | LOCAL_WHOLE_STATIC_LIBRARIES := $(LIB_WIFI_HAL) |
Roshan Pius | 3c4e8a3 | 2016-10-03 14:53:58 -0700 | [diff] [blame] | 44 | LOCAL_INIT_RC := android.hardware.wifi@1.0-service.rc |
| 45 | include $(BUILD_EXECUTABLE) |