Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2013 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 | LOCAL_PATH := $(call my-dir) |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 17 | |
Adam Lesinski | ad4ad8c | 2015-10-05 18:16:18 -0700 | [diff] [blame] | 18 | source_files := zip_archive.cc zip_writer.cc |
| 19 | test_files := zip_archive_test.cc zip_writer_test.cc entry_name_utils_test.cc |
| 20 | |
Adam Lesinski | 591fd39 | 2015-10-06 15:23:46 -0700 | [diff] [blame] | 21 | # ZLIB_CONST turns on const for input buffers, which is pretty standard. |
| 22 | common_c_flags := -Werror -Wall -DZLIB_CONST |
| 23 | |
Adam Lesinski | ad4ad8c | 2015-10-05 18:16:18 -0700 | [diff] [blame] | 24 | # Incorrectly warns when C++11 empty brace {} initializer is used. |
| 25 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61489 |
Adam Lesinski | 591fd39 | 2015-10-06 15:23:46 -0700 | [diff] [blame] | 26 | common_cpp_flags := -Wold-style-cast -Wno-missing-field-initializers |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 27 | |
Dan Albert | 27d166c | 2014-10-16 20:47:51 -0700 | [diff] [blame] | 28 | include $(CLEAR_VARS) |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 29 | LOCAL_CPP_EXTENSION := .cc |
| 30 | LOCAL_SRC_FILES := ${source_files} |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 31 | LOCAL_STATIC_LIBRARIES := libz |
Dan Albert | 1ae0764 | 2015-04-09 14:11:18 -0700 | [diff] [blame] | 32 | LOCAL_SHARED_LIBRARIES := libutils libbase |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 33 | LOCAL_MODULE:= libziparchive |
Adam Lesinski | 591fd39 | 2015-10-06 15:23:46 -0700 | [diff] [blame] | 34 | LOCAL_CFLAGS := $(common_c_flags) |
| 35 | LOCAL_CPPFLAGS := $(common_cpp_flags) |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 36 | include $(BUILD_STATIC_LIBRARY) |
| 37 | |
| 38 | include $(CLEAR_VARS) |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 39 | LOCAL_CPP_EXTENSION := .cc |
| 40 | LOCAL_SRC_FILES := ${source_files} |
Dan Albert | 1ae0764 | 2015-04-09 14:11:18 -0700 | [diff] [blame] | 41 | LOCAL_STATIC_LIBRARIES := libz libutils libbase |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 42 | LOCAL_MODULE:= libziparchive-host |
Adam Lesinski | 591fd39 | 2015-10-06 15:23:46 -0700 | [diff] [blame] | 43 | LOCAL_CFLAGS := $(common_c_flags) |
Dan Willemsen | 87a419c | 2015-08-13 14:43:34 -0700 | [diff] [blame] | 44 | LOCAL_CFLAGS_windows := -mno-ms-bitfields |
Adam Lesinski | ad4ad8c | 2015-10-05 18:16:18 -0700 | [diff] [blame] | 45 | LOCAL_CPPFLAGS := $(common_cpp_flags) |
| 46 | |
Ian Rogers | 5af80aa | 2014-06-17 01:50:25 -0700 | [diff] [blame] | 47 | LOCAL_MULTILIB := both |
Dan Willemsen | 87a419c | 2015-08-13 14:43:34 -0700 | [diff] [blame] | 48 | LOCAL_MODULE_HOST_OS := darwin linux windows |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 49 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 50 | |
| 51 | include $(CLEAR_VARS) |
Ian Rogers | 40ac96c | 2014-10-30 09:53:38 -0700 | [diff] [blame] | 52 | LOCAL_CPP_EXTENSION := .cc |
| 53 | LOCAL_SRC_FILES := ${source_files} |
Evgenii Stepanov | 953314f | 2015-06-29 16:27:44 -0700 | [diff] [blame] | 54 | LOCAL_STATIC_LIBRARIES := libutils |
| 55 | LOCAL_SHARED_LIBRARIES := libz-host liblog libbase |
Ian Rogers | 40ac96c | 2014-10-30 09:53:38 -0700 | [diff] [blame] | 56 | LOCAL_MODULE:= libziparchive-host |
Adam Lesinski | 591fd39 | 2015-10-06 15:23:46 -0700 | [diff] [blame] | 57 | LOCAL_CFLAGS := $(common_c_flags) |
Adam Lesinski | ad4ad8c | 2015-10-05 18:16:18 -0700 | [diff] [blame] | 58 | LOCAL_CPPFLAGS := $(common_cpp_flags) |
Ian Rogers | 40ac96c | 2014-10-30 09:53:38 -0700 | [diff] [blame] | 59 | LOCAL_MULTILIB := both |
| 60 | include $(BUILD_HOST_SHARED_LIBRARY) |
| 61 | |
Dan Albert | 27d166c | 2014-10-16 20:47:51 -0700 | [diff] [blame] | 62 | # Tests. |
Ian Rogers | 40ac96c | 2014-10-30 09:53:38 -0700 | [diff] [blame] | 63 | include $(CLEAR_VARS) |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 64 | LOCAL_MODULE := ziparchive-tests |
| 65 | LOCAL_CPP_EXTENSION := .cc |
Adam Lesinski | 591fd39 | 2015-10-06 15:23:46 -0700 | [diff] [blame] | 66 | LOCAL_CFLAGS := $(common_c_flags) |
Adam Lesinski | ad4ad8c | 2015-10-05 18:16:18 -0700 | [diff] [blame] | 67 | LOCAL_CPPFLAGS := $(common_cpp_flags) |
| 68 | LOCAL_SRC_FILES := $(test_files) |
Dan Albert | 1ae0764 | 2015-04-09 14:11:18 -0700 | [diff] [blame] | 69 | LOCAL_SHARED_LIBRARIES := liblog libbase |
Dan Albert | 27d166c | 2014-10-16 20:47:51 -0700 | [diff] [blame] | 70 | LOCAL_STATIC_LIBRARIES := libziparchive libz libutils |
Narayan Kamath | 7462f02 | 2013-11-21 13:05:04 +0000 | [diff] [blame] | 71 | include $(BUILD_NATIVE_TEST) |
Narayan Kamath | 58aaf46 | 2013-12-10 16:47:14 +0000 | [diff] [blame] | 72 | |
| 73 | include $(CLEAR_VARS) |
| 74 | LOCAL_MODULE := ziparchive-tests-host |
| 75 | LOCAL_CPP_EXTENSION := .cc |
Adam Lesinski | 591fd39 | 2015-10-06 15:23:46 -0700 | [diff] [blame] | 76 | LOCAL_CFLAGS := $(common_c_flags) |
Adam Lesinski | ad4ad8c | 2015-10-05 18:16:18 -0700 | [diff] [blame] | 77 | LOCAL_CPPFLAGS := -Wno-unnamed-type-template-args $(common_cpp_flags) |
| 78 | LOCAL_SRC_FILES := $(test_files) |
Dan Albert | 1ae0764 | 2015-04-09 14:11:18 -0700 | [diff] [blame] | 79 | LOCAL_SHARED_LIBRARIES := libziparchive-host liblog libbase |
Ian Rogers | 40ac96c | 2014-10-30 09:53:38 -0700 | [diff] [blame] | 80 | LOCAL_STATIC_LIBRARIES := \ |
Dan Albert | 27d166c | 2014-10-16 20:47:51 -0700 | [diff] [blame] | 81 | libz \ |
| 82 | libutils |
Narayan Kamath | 58aaf46 | 2013-12-10 16:47:14 +0000 | [diff] [blame] | 83 | include $(BUILD_HOST_NATIVE_TEST) |