blob: 0754c7acfcccd25133760cf899182ee92c29f100 [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 := \
44 component/verifier_test.cpp \
45 component/applypatch_test.cpp
Jed Estep43291862016-02-03 17:02:09 -080046LOCAL_FORCE_STATIC_EXECUTABLE := true
47LOCAL_STATIC_LIBRARIES := \
Jed Estepb8a693b2016-03-09 17:51:34 -080048 libapplypatch \
49 libotafault \
Jed Estep43291862016-02-03 17:02:09 -080050 libverifier \
Josh Gao073164f2016-08-05 15:59:05 -070051 libcrypto_utils \
52 libcrypto \
Jed Estep43291862016-02-03 17:02:09 -080053 libminui \
54 libminzip \
55 libcutils \
Jed Estepb8a693b2016-03-09 17:51:34 -080056 libbz \
57 libz \
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070058 libc \
59 libbase \
60 liblog
Jed Estep43291862016-02-03 17:02:09 -080061
Jed Estepb8a693b2016-03-09 17:51:34 -080062testdata_out_path := $(TARGET_OUT_DATA_NATIVE_TESTS)/recovery
Jed Estep43291862016-02-03 17:02:09 -080063testdata_files := $(call find-subdir-files, testdata/*)
64
65GEN := $(addprefix $(testdata_out_path)/, $(testdata_files))
66$(GEN): PRIVATE_PATH := $(LOCAL_PATH)
67$(GEN): PRIVATE_CUSTOM_TOOL = cp $< $@
68$(GEN): $(testdata_out_path)/% : $(LOCAL_PATH)/%
69 $(transform-generated-source)
70LOCAL_GENERATED_SOURCES += $(GEN)
Dan Albert13f21c22014-10-16 17:39:31 -070071include $(BUILD_NATIVE_TEST)