blob: 3d05386b08190e0a3463b74e58829b15138e23cf [file] [log] [blame]
Dan Albert13f21c22014-10-16 17:39:31 -07001#
2# Copyright (C) 2014 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Kenny Root7a4adb52013-10-09 10:14:35 -070017LOCAL_PATH := $(call my-dir)
Dan Albert13f21c22014-10-16 17:39:31 -070018
Jed Estep43291862016-02-03 17:02:09 -080019# Unit tests
20include $(CLEAR_VARS)
21LOCAL_CLANG := true
Tianjie Xu7aa88742016-09-28 11:42:17 -070022LOCAL_CFLAGS := -Werror
Jed Estep43291862016-02-03 17:02:09 -080023LOCAL_MODULE := recovery_unit_test
24LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Tianjie Xu2430e292016-04-19 15:02:41 -070025LOCAL_STATIC_LIBRARIES := \
26 libverifier \
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070027 libminui \
28 libotautil \
29 libziparchive \
30 libutils \
31 libz \
32 libselinux \
33 libbase
Tianjie Xu2430e292016-04-19 15:02:41 -070034
Jed Estep43291862016-02-03 17:02:09 -080035LOCAL_SRC_FILES := unit/asn1_decoder_test.cpp
Mark Salyzyna4f701a2016-03-09 14:58:16 -080036LOCAL_SRC_FILES += unit/recovery_test.cpp
Tianjie Xu2430e292016-04-19 15:02:41 -070037LOCAL_SRC_FILES += unit/locale_test.cpp
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070038LOCAL_SRC_FILES += unit/zip_test.cpp
Jed Estep43291862016-02-03 17:02:09 -080039LOCAL_C_INCLUDES := bootable/recovery
Mark Salyzyna4f701a2016-03-09 14:58:16 -080040LOCAL_SHARED_LIBRARIES := liblog
Jed Estep43291862016-02-03 17:02:09 -080041include $(BUILD_NATIVE_TEST)
42
43# Component tests
Kenny Root7a4adb52013-10-09 10:14:35 -070044include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -070045LOCAL_CLANG := true
Tianjie Xu7aa88742016-09-28 11:42:17 -070046LOCAL_CFLAGS += -Wno-unused-parameter -Werror
Dan Albert13f21c22014-10-16 17:39:31 -070047LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Jed Estep43291862016-02-03 17:02:09 -080048LOCAL_MODULE := recovery_component_test
49LOCAL_C_INCLUDES := bootable/recovery
Jed Estepb8a693b2016-03-09 17:51:34 -080050LOCAL_SRC_FILES := \
Tao Bao0c7839a2016-10-10 15:48:37 -070051 component/applypatch_test.cpp \
Tao Baod770d2e2016-10-03 15:26:06 -070052 component/edify_test.cpp \
Tao Bao0c7839a2016-10-10 15:48:37 -070053 component/updater_test.cpp \
54 component/verifier_test.cpp
Jed Estep43291862016-02-03 17:02:09 -080055LOCAL_FORCE_STATIC_EXECUTABLE := true
Tao Bao0c7839a2016-10-10 15:48:37 -070056
57tune2fs_static_libraries := \
58 libext2_com_err \
59 libext2_blkid \
60 libext2_quota \
61 libext2_uuid_static \
62 libext2_e2p \
63 libext2fs
64
Jed Estep43291862016-02-03 17:02:09 -080065LOCAL_STATIC_LIBRARIES := \
Jed Estepb8a693b2016-03-09 17:51:34 -080066 libapplypatch \
Tao Baod770d2e2016-10-03 15:26:06 -070067 libedify \
Jed Estepb8a693b2016-03-09 17:51:34 -080068 libotafault \
Tao Bao0c7839a2016-10-10 15:48:37 -070069 libupdater \
Jed Estep43291862016-02-03 17:02:09 -080070 libverifier \
Jed Estep43291862016-02-03 17:02:09 -080071 libminui \
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070072 libotautil \
Tao Bao0c7839a2016-10-10 15:48:37 -070073 libmounts \
74 liblog \
75 libselinux \
76 libext4_utils_static \
77 libsparse_static \
78 libcrypto_utils \
79 libcrypto \
Jed Estep43291862016-02-03 17:02:09 -080080 libcutils \
Jed Estepb8a693b2016-03-09 17:51:34 -080081 libbz \
82 libz \
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070083 libbase \
Tao Bao0c7839a2016-10-10 15:48:37 -070084 libtune2fs \
85 $(tune2fs_static_libraries)
Jed Estep43291862016-02-03 17:02:09 -080086
Jed Estep43291862016-02-03 17:02:09 -080087testdata_files := $(call find-subdir-files, testdata/*)
88
Tao Baof1338fb2016-10-25 15:05:40 -070089testdata_out_path := $(TARGET_OUT_DATA_NATIVE_TESTS)/recovery
Jed Estep43291862016-02-03 17:02:09 -080090GEN := $(addprefix $(testdata_out_path)/, $(testdata_files))
91$(GEN): PRIVATE_PATH := $(LOCAL_PATH)
92$(GEN): PRIVATE_CUSTOM_TOOL = cp $< $@
93$(GEN): $(testdata_out_path)/% : $(LOCAL_PATH)/%
94 $(transform-generated-source)
95LOCAL_GENERATED_SOURCES += $(GEN)
Tao Baof1338fb2016-10-25 15:05:40 -070096
97ifdef TARGET_2ND_ARCH
98testdata_out_path_2nd_arch := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_NATIVE_TESTS)/recovery
99GEN_2ND_ARCH := $(addprefix $(testdata_out_path_2nd_arch)/, $(testdata_files))
100$(GEN_2ND_ARCH): PRIVATE_PATH := $(LOCAL_PATH)
101$(GEN_2ND_ARCH): PRIVATE_CUSTOM_TOOL = cp $< $@
102$(GEN_2ND_ARCH): $(testdata_out_path_2nd_arch)/% : $(LOCAL_PATH)/%
103 $(transform-generated-source)
104LOCAL_GENERATED_SOURCES += $(GEN_2ND_ARCH)
105endif # TARGET_2ND_ARCH
106
Dan Albert13f21c22014-10-16 17:39:31 -0700107include $(BUILD_NATIVE_TEST)