Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1 | # Copyright 2005 The Android Open Source Project |
Tao Bao | 99f0d9e | 2016-10-13 12:46:38 -0700 | [diff] [blame] | 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. |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 14 | |
| 15 | LOCAL_PATH:= $(call my-dir) |
| 16 | |
Dan Albert | ffd6c31 | 2015-02-26 15:33:00 -0800 | [diff] [blame] | 17 | minadbd_cflags := \ |
| 18 | -Wall -Werror \ |
Dan Albert | ffd6c31 | 2015-02-26 15:33:00 -0800 | [diff] [blame] | 19 | -DADB_HOST=0 \ |
Ethan Yonker | 534d4e0 | 2016-08-26 10:05:03 -0500 | [diff] [blame] | 20 | -DPLATFORM_SDK_VERSION=$(PLATFORM_SDK_VERSION) |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 21 | |
Tao Bao | f87d204 | 2017-11-15 11:26:06 -0800 | [diff] [blame] | 22 | # libminadbd (static library) |
Tao Bao | 99f0d9e | 2016-10-13 12:46:38 -0700 | [diff] [blame] | 23 | # =============================== |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 24 | include $(CLEAR_VARS) |
| 25 | |
| 26 | LOCAL_SRC_FILES := \ |
Elliott Hughes | 20531ef | 2015-04-10 13:59:19 -0700 | [diff] [blame] | 27 | fuse_adb_provider.cpp \ |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 28 | ../fuse_sideload.cpp \ |
Josh Gao | acb2a2f | 2016-08-26 18:24:34 -0700 | [diff] [blame] | 29 | minadbd.cpp \ |
Elliott Hughes | 24eb8a0 | 2016-06-15 15:12:17 -0700 | [diff] [blame] | 30 | minadbd_services.cpp \ |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 31 | |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 32 | LOCAL_MODULE := libminadbd |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 33 | LOCAL_CFLAGS := $(minadbd_cflags) -Wno-unused-parameter |
Dan Albert | ffd6c31 | 2015-02-26 15:33:00 -0800 | [diff] [blame] | 34 | LOCAL_CONLY_FLAGS := -Wimplicit-function-declaration |
Ethan Yonker | c798c9c | 2015-10-09 11:15:26 -0500 | [diff] [blame] | 35 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. system/core/adb |
Dan Albert | f3a5726 | 2015-02-19 13:21:14 -0800 | [diff] [blame] | 36 | LOCAL_WHOLE_STATIC_LIBRARIES := libadbd |
Ethan Yonker | 99af766 | 2016-09-15 14:48:29 -0500 | [diff] [blame] | 37 | LOCAL_SHARED_LIBRARIES := libbase liblog libcutils libc |
| 38 | |
| 39 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 40 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes |
| 41 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
| 42 | LOCAL_CFLAGS += -DUSE_MINCRYPT |
| 43 | else |
D. Andrei Măceș | b29a5e2 | 2016-12-22 06:19:44 -0500 | [diff] [blame] | 44 | LOCAL_SHARED_LIBRARIES += libcrypto \ |
| 45 | $(if $(WITH_CRYPTO_UTILS),libcrypto_utils) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 46 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0) |
| 47 | # Needed in Android 9.0 |
| 48 | LOCAL_WHOLE_STATIC_LIBRARIES += libasyncio |
| 49 | endif |
Ethan Yonker | 99af766 | 2016-09-15 14:48:29 -0500 | [diff] [blame] | 50 | endif |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 51 | |
Dees_Troy | 2673cec | 2013-04-02 20:22:16 +0000 | [diff] [blame] | 52 | include $(BUILD_SHARED_LIBRARY) |
Dan Albert | ffd6c31 | 2015-02-26 15:33:00 -0800 | [diff] [blame] | 53 | |
| 54 | include $(CLEAR_VARS) |
| 55 | |
Ethan Yonker | ea4efc6 | 2017-12-12 16:24:28 -0600 | [diff] [blame] | 56 | LOCAL_SRC_FILES := \ |
| 57 | fuse_adb_provider.cpp \ |
| 58 | ../fuse_sideload.cpp \ |
| 59 | minadbd.cpp \ |
| 60 | minadbd_services.cpp \ |
| 61 | |
| 62 | LOCAL_CLANG := true |
| 63 | LOCAL_MODULE := libminadbd |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 64 | LOCAL_CFLAGS := $(minadbd_cflags) -Wno-unused-parameter |
Ethan Yonker | ea4efc6 | 2017-12-12 16:24:28 -0600 | [diff] [blame] | 65 | LOCAL_CONLY_FLAGS := -Wimplicit-function-declaration |
| 66 | LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. system/core/adb |
| 67 | LOCAL_WHOLE_STATIC_LIBRARIES := libadbd |
| 68 | LOCAL_STATIC_LIBRARIES := libbase liblog libcutils libc |
| 69 | |
| 70 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0) |
| 71 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes |
| 72 | LOCAL_SHARED_LIBRARIES += libmincrypttwrp |
| 73 | LOCAL_CFLAGS += -DUSE_MINCRYPT |
| 74 | else |
| 75 | LOCAL_SHARED_LIBRARIES += libcrypto \ |
| 76 | $(if $(WITH_CRYPTO_UTILS),libcrypto_utils) |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 77 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -gt 27; echo $$?),0) |
| 78 | # Needed in Android 9.0 |
| 79 | LOCAL_WHOLE_STATIC_LIBRARIES += libasyncio |
| 80 | endif |
Ethan Yonker | ea4efc6 | 2017-12-12 16:24:28 -0600 | [diff] [blame] | 81 | endif |
| 82 | |
| 83 | include $(BUILD_STATIC_LIBRARY) |
| 84 | |
Tao Bao | 99f0d9e | 2016-10-13 12:46:38 -0700 | [diff] [blame] | 85 | # minadbd_test (native test) |
| 86 | # =============================== |
Ethan Yonker | ea4efc6 | 2017-12-12 16:24:28 -0600 | [diff] [blame] | 87 | include $(CLEAR_VARS) |
| 88 | |
Dan Albert | ffd6c31 | 2015-02-26 15:33:00 -0800 | [diff] [blame] | 89 | LOCAL_MODULE := minadbd_test |
Dan Shi | 7368316 | 2017-03-28 17:22:41 -0700 | [diff] [blame] | 90 | LOCAL_COMPATIBILITY_SUITE := device-tests |
Dan Albert | ffd6c31 | 2015-02-26 15:33:00 -0800 | [diff] [blame] | 91 | LOCAL_SRC_FILES := fuse_adb_provider_test.cpp |
| 92 | LOCAL_CFLAGS := $(minadbd_cflags) |
| 93 | LOCAL_C_INCLUDES := $(LOCAL_PATH) system/core/adb |
Tianjie Xu | a88cc54 | 2017-10-25 13:16:54 -0700 | [diff] [blame] | 94 | LOCAL_STATIC_LIBRARIES := \ |
| 95 | libBionicGtestMain \ |
| 96 | libminadbd |
| 97 | LOCAL_SHARED_LIBRARIES := \ |
| 98 | liblog \ |
| 99 | libbase \ |
| 100 | libcutils |
Dan Albert | ffd6c31 | 2015-02-26 15:33:00 -0800 | [diff] [blame] | 101 | |
| 102 | include $(BUILD_NATIVE_TEST) |