Jed Estep | d940887 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 1 | # Copyright 2015 The Android Open Source Project |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [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 | # |
Jed Estep | d940887 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 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 languae governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 17 | include $(CLEAR_VARS) |
| 18 | |
Jed Estep | d940887 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 19 | otafault_static_libs := \ |
| 20 | libminzip \ |
| 21 | libz \ |
| 22 | libselinux \ |
| 23 | |
| 24 | LOCAL_SRC_FILES := config.cpp ota_io.cpp |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 25 | LOCAL_MODULE_TAGS := eng |
| 26 | LOCAL_MODULE := libotafault |
| 27 | LOCAL_CLANG := true |
Jed Estep | d940887 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 28 | LOCAL_C_INCLUDES := bootable/recovery |
| 29 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH) |
| 30 | LOCAL_WHOLE_STATIC_LIBRARIES := $(otafault_static_libs) |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 31 | |
| 32 | include $(BUILD_STATIC_LIBRARY) |
| 33 | |
| 34 | include $(CLEAR_VARS) |
| 35 | |
Jed Estep | d940887 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 36 | LOCAL_SRC_FILES := config.cpp ota_io.cpp test.cpp |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 37 | LOCAL_MODULE_TAGS := tests |
| 38 | LOCAL_MODULE := otafault_test |
Jed Estep | d940887 | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 39 | LOCAL_STATIC_LIBRARIES := $(otafault_static_libs) |
| 40 | LOCAL_C_INCLUDES := bootable/recovery |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 41 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
Jed Estep | f1fc48c | 2015-12-15 16:04:53 -0800 | [diff] [blame] | 42 | |
| 43 | include $(BUILD_EXECUTABLE) |