blob: ef822d1d14e664bdf1105d4f040c720766ba3542 [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 \
27 libminui
28
Jed Estep43291862016-02-03 17:02:09 -080029LOCAL_SRC_FILES := unit/asn1_decoder_test.cpp
Mark Salyzyna4f701a2016-03-09 14:58:16 -080030LOCAL_SRC_FILES += unit/recovery_test.cpp
Tianjie Xu2430e292016-04-19 15:02:41 -070031LOCAL_SRC_FILES += unit/locale_test.cpp
Jed Estep43291862016-02-03 17:02:09 -080032LOCAL_C_INCLUDES := bootable/recovery
Mark Salyzyna4f701a2016-03-09 14:58:16 -080033LOCAL_SHARED_LIBRARIES := liblog
Jed Estep43291862016-02-03 17:02:09 -080034include $(BUILD_NATIVE_TEST)
35
36# Component tests
Kenny Root7a4adb52013-10-09 10:14:35 -070037include $(CLEAR_VARS)
Tao Bao80e46e02015-06-03 10:49:29 -070038LOCAL_CLANG := true
Tianjie Xu7aa88742016-09-28 11:42:17 -070039LOCAL_CFLAGS += -Wno-unused-parameter -Werror
Dan Albert13f21c22014-10-16 17:39:31 -070040LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Jed Estep43291862016-02-03 17:02:09 -080041LOCAL_MODULE := recovery_component_test
42LOCAL_C_INCLUDES := bootable/recovery
Jed Estepb8a693b2016-03-09 17:51:34 -080043LOCAL_SRC_FILES := \
Tao Bao0c7839a2016-10-10 15:48:37 -070044 component/applypatch_test.cpp \
Tao Baod770d2e2016-10-03 15:26:06 -070045 component/edify_test.cpp \
Tao Bao0c7839a2016-10-10 15:48:37 -070046 component/updater_test.cpp \
47 component/verifier_test.cpp
Jed Estep43291862016-02-03 17:02:09 -080048LOCAL_FORCE_STATIC_EXECUTABLE := true
Tao Bao0c7839a2016-10-10 15:48:37 -070049
50tune2fs_static_libraries := \
51 libext2_com_err \
52 libext2_blkid \
53 libext2_quota \
54 libext2_uuid_static \
55 libext2_e2p \
56 libext2fs
57
Jed Estep43291862016-02-03 17:02:09 -080058LOCAL_STATIC_LIBRARIES := \
Jed Estepb8a693b2016-03-09 17:51:34 -080059 libapplypatch \
Tao Baod770d2e2016-10-03 15:26:06 -070060 libedify \
Jed Estepb8a693b2016-03-09 17:51:34 -080061 libotafault \
Tao Bao0c7839a2016-10-10 15:48:37 -070062 libupdater \
Jed Estep43291862016-02-03 17:02:09 -080063 libverifier \
Jed Estep43291862016-02-03 17:02:09 -080064 libminui \
65 libminzip \
Tao Bao0c7839a2016-10-10 15:48:37 -070066 libmounts \
67 liblog \
68 libselinux \
69 libext4_utils_static \
70 libsparse_static \
71 libcrypto_utils \
72 libcrypto \
Jed Estep43291862016-02-03 17:02:09 -080073 libcutils \
Jed Estepb8a693b2016-03-09 17:51:34 -080074 libbz \
75 libz \
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070076 libbase \
Tao Bao0c7839a2016-10-10 15:48:37 -070077 libtune2fs \
78 $(tune2fs_static_libraries)
Jed Estep43291862016-02-03 17:02:09 -080079
Jed Estepb8a693b2016-03-09 17:51:34 -080080testdata_out_path := $(TARGET_OUT_DATA_NATIVE_TESTS)/recovery
Jed Estep43291862016-02-03 17:02:09 -080081testdata_files := $(call find-subdir-files, testdata/*)
82
83GEN := $(addprefix $(testdata_out_path)/, $(testdata_files))
84$(GEN): PRIVATE_PATH := $(LOCAL_PATH)
85$(GEN): PRIVATE_CUSTOM_TOOL = cp $< $@
86$(GEN): $(testdata_out_path)/% : $(LOCAL_PATH)/%
87 $(transform-generated-source)
88LOCAL_GENERATED_SOURCES += $(GEN)
Dan Albert13f21c22014-10-16 17:39:31 -070089include $(BUILD_NATIVE_TEST)