| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2015 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 | # |
| Adam Lesinski | 64587af | 2016-02-18 18:33:06 -0800 | [diff] [blame] | 16 | LOCAL_PATH:= $(call my-dir) |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 17 | |
| 18 | # ========================================================== |
| 19 | # Setup some common variables for the different build |
| 20 | # targets here. |
| 21 | # ========================================================== |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 22 | |
| 23 | main := Main.cpp |
| 24 | sources := \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 25 | compile/IdAssigner.cpp \ |
| Adam Lesinski | 5eeaadd | 2016-08-25 12:26:56 -0700 | [diff] [blame] | 26 | compile/InlineXmlFormatParser.cpp \ |
| Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame^] | 27 | compile/NinePatch.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 28 | compile/Png.cpp \ |
| Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame^] | 29 | compile/PngChunkFilter.cpp \ |
| 30 | compile/PngCrunch.cpp \ |
| Adam Lesinski | 393b5f0 | 2015-12-17 13:03:11 -0800 | [diff] [blame] | 31 | compile/PseudolocaleGenerator.cpp \ |
| 32 | compile/Pseudolocalizer.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 33 | compile/XmlIdCollector.cpp \ |
| Adam Lesinski | 6a00817 | 2016-02-02 17:02:58 -0800 | [diff] [blame] | 34 | filter/ConfigFilter.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 35 | flatten/Archive.cpp \ |
| 36 | flatten/TableFlattener.cpp \ |
| 37 | flatten/XmlFlattener.cpp \ |
| Adam Lesinski | 5eeaadd | 2016-08-25 12:26:56 -0700 | [diff] [blame] | 38 | io/File.cpp \ |
| Adam Lesinski | a6fe345 | 2015-12-09 15:20:52 -0800 | [diff] [blame] | 39 | io/FileSystem.cpp \ |
| Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame^] | 40 | io/Io.cpp \ |
| Adam Lesinski | a6fe345 | 2015-12-09 15:20:52 -0800 | [diff] [blame] | 41 | io/ZipArchive.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 42 | link/AutoVersioner.cpp \ |
| Adam Lesinski | 2ae4a87 | 2015-11-02 16:10:55 -0800 | [diff] [blame] | 43 | link/ManifestFixer.cpp \ |
| Adam Lesinski | e4bb9eb | 2016-02-12 22:18:51 -0800 | [diff] [blame] | 44 | link/ProductFilter.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 45 | link/PrivateAttributeMover.cpp \ |
| 46 | link/ReferenceLinker.cpp \ |
| 47 | link/TableMerger.cpp \ |
| Adam Lesinski | fb6312f | 2016-06-28 14:40:32 -0700 | [diff] [blame] | 48 | link/VersionCollapser.cpp \ |
| Alexandria Cornwall | a7cc3f1 | 2016-08-16 13:33:32 -0700 | [diff] [blame] | 49 | link/XmlNamespaceRemover.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 50 | link/XmlReferenceLinker.cpp \ |
| 51 | process/SymbolTable.cpp \ |
| Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 52 | proto/ProtoHelpers.cpp \ |
| 53 | proto/TableProtoDeserializer.cpp \ |
| 54 | proto/TableProtoSerializer.cpp \ |
| Adam Lesinski | 355f285 | 2016-02-13 20:26:45 -0800 | [diff] [blame] | 55 | split/TableSplitter.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 56 | unflatten/BinaryResourceParser.cpp \ |
| 57 | unflatten/ResChunkPullParser.cpp \ |
| 58 | util/BigBuffer.cpp \ |
| 59 | util/Files.cpp \ |
| 60 | util/Util.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 61 | ConfigDescription.cpp \ |
| Adam Lesinski | 330edcd | 2015-05-04 17:40:56 -0700 | [diff] [blame] | 62 | Debug.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 63 | Flags.cpp \ |
| Adam Lesinski | ca5638f | 2015-10-21 14:42:43 -0700 | [diff] [blame] | 64 | java/AnnotationProcessor.cpp \ |
| Adam Lesinski | 6cbfb1d | 2016-03-31 13:33:02 -0700 | [diff] [blame] | 65 | java/ClassDefinition.cpp \ |
| Adam Lesinski | ca5638f | 2015-10-21 14:42:43 -0700 | [diff] [blame] | 66 | java/JavaClassGenerator.cpp \ |
| 67 | java/ManifestClassGenerator.cpp \ |
| 68 | java/ProguardRules.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 69 | Locale.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 70 | Resource.cpp \ |
| 71 | ResourceParser.cpp \ |
| 72 | ResourceTable.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 73 | ResourceUtils.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 74 | ResourceValues.cpp \ |
| 75 | SdkConstants.cpp \ |
| 76 | StringPool.cpp \ |
| Adam Lesinski | cc5609d | 2016-04-05 12:41:07 -0700 | [diff] [blame] | 77 | xml/XmlActionExecutor.cpp \ |
| Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 78 | xml/XmlDom.cpp \ |
| 79 | xml/XmlPullParser.cpp \ |
| 80 | xml/XmlUtil.cpp |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 81 | |
| Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 82 | sources += Format.proto |
| 83 | |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 84 | testSources := \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 85 | compile/IdAssigner_test.cpp \ |
| Adam Lesinski | 5eeaadd | 2016-08-25 12:26:56 -0700 | [diff] [blame] | 86 | compile/InlineXmlFormatParser_test.cpp \ |
| Adam Lesinski | 21efb68 | 2016-09-14 17:35:43 -0700 | [diff] [blame^] | 87 | compile/NinePatch_test.cpp \ |
| Adam Lesinski | 393b5f0 | 2015-12-17 13:03:11 -0800 | [diff] [blame] | 88 | compile/PseudolocaleGenerator_test.cpp \ |
| 89 | compile/Pseudolocalizer_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 90 | compile/XmlIdCollector_test.cpp \ |
| Adam Lesinski | 6a00817 | 2016-02-02 17:02:58 -0800 | [diff] [blame] | 91 | filter/ConfigFilter_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 92 | flatten/TableFlattener_test.cpp \ |
| 93 | flatten/XmlFlattener_test.cpp \ |
| 94 | link/AutoVersioner_test.cpp \ |
| Adam Lesinski | 2ae4a87 | 2015-11-02 16:10:55 -0800 | [diff] [blame] | 95 | link/ManifestFixer_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 96 | link/PrivateAttributeMover_test.cpp \ |
| Adam Lesinski | e4bb9eb | 2016-02-12 22:18:51 -0800 | [diff] [blame] | 97 | link/ProductFilter_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 98 | link/ReferenceLinker_test.cpp \ |
| 99 | link/TableMerger_test.cpp \ |
| Adam Lesinski | fb6312f | 2016-06-28 14:40:32 -0700 | [diff] [blame] | 100 | link/VersionCollapser_test.cpp \ |
| Alexandria Cornwall | a7cc3f1 | 2016-08-16 13:33:32 -0700 | [diff] [blame] | 101 | link/XmlNamespaceRemover_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 102 | link/XmlReferenceLinker_test.cpp \ |
| 103 | process/SymbolTable_test.cpp \ |
| Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 104 | proto/TableProtoSerializer_test.cpp \ |
| Adam Lesinski | 355f285 | 2016-02-13 20:26:45 -0800 | [diff] [blame] | 105 | split/TableSplitter_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 106 | util/BigBuffer_test.cpp \ |
| Adam Lesinski | 96917c2 | 2016-03-09 13:11:25 -0800 | [diff] [blame] | 107 | util/Files_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 108 | util/Maybe_test.cpp \ |
| 109 | util/StringPiece_test.cpp \ |
| 110 | util/Util_test.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 111 | ConfigDescription_test.cpp \ |
| Adam Lesinski | b274e35 | 2015-11-06 15:14:35 -0800 | [diff] [blame] | 112 | java/AnnotationProcessor_test.cpp \ |
| Adam Lesinski | ca5638f | 2015-10-21 14:42:43 -0700 | [diff] [blame] | 113 | java/JavaClassGenerator_test.cpp \ |
| 114 | java/ManifestClassGenerator_test.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 115 | Locale_test.cpp \ |
| Adam Lesinski | d0f116b | 2016-07-08 15:00:32 -0700 | [diff] [blame] | 116 | NameMangler_test.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 117 | Resource_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 118 | ResourceParser_test.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 119 | ResourceTable_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 120 | ResourceUtils_test.cpp \ |
| Adam Lesinski | 355f285 | 2016-02-13 20:26:45 -0800 | [diff] [blame] | 121 | SdkConstants_test.cpp \ |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 122 | StringPool_test.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 123 | ValueVisitor_test.cpp \ |
| Adam Lesinski | cc5609d | 2016-04-05 12:41:07 -0700 | [diff] [blame] | 124 | xml/XmlActionExecutor_test.cpp \ |
| Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 125 | xml/XmlDom_test.cpp \ |
| 126 | xml/XmlPullParser_test.cpp \ |
| 127 | xml/XmlUtil_test.cpp |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 128 | |
| 129 | toolSources := \ |
| 130 | compile/Compile.cpp \ |
| Adam Lesinski | 458b877 | 2016-04-25 14:20:21 -0700 | [diff] [blame] | 131 | diff/Diff.cpp \ |
| Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 132 | dump/Dump.cpp \ |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 133 | link/Link.cpp |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 134 | |
| Adam Lesinski | feefeb4 | 2015-04-03 12:44:40 -0700 | [diff] [blame] | 135 | hostLdLibs := |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 136 | |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 137 | hostStaticLibs := \ |
| 138 | libandroidfw \ |
| 139 | libutils \ |
| 140 | liblog \ |
| 141 | libcutils \ |
| 142 | libexpat \ |
| Colin Cross | 9a1a3bc | 2016-08-26 11:15:17 -0700 | [diff] [blame] | 143 | libziparchive \ |
| Narayan Kamath | 231e054 | 2015-04-29 16:32:23 +0100 | [diff] [blame] | 144 | libpng \ |
| Adam Lesinski | f4ab612 | 2016-03-10 19:24:00 -0800 | [diff] [blame] | 145 | libbase \ |
| Dan Willemsen | 2005edf | 2016-07-31 22:48:28 -0700 | [diff] [blame] | 146 | libprotobuf-cpp-lite |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 147 | |
| Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 148 | |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 149 | # Statically link libz for MinGW (Win SDK under Linux), |
| 150 | # and dynamically link for all others. |
| 151 | hostStaticLibs_windows := libz |
| 152 | hostLdLibs_linux := -lz |
| 153 | hostLdLibs_darwin := -lz |
| Adam Lesinski | feefeb4 | 2015-04-03 12:44:40 -0700 | [diff] [blame] | 154 | |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 155 | cFlags := -Wall -Werror -Wno-unused-parameter -UNDEBUG |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 156 | cFlags_darwin := -D_DARWIN_UNLIMITED_STREAMS |
| 157 | cFlags_windows := -Wno-maybe-uninitialized # Incorrectly marking use of Maybe.value() as error. |
| 158 | cppFlags := -std=c++11 -Wno-missing-field-initializers -fno-exceptions -fno-rtti |
| Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 159 | protoIncludes := $(call generated-sources-dir-for,STATIC_LIBRARIES,libaapt2,HOST) |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 160 | |
| 161 | # ========================================================== |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 162 | # NOTE: Do not add any shared libraries. |
| 163 | # AAPT2 is built to run on many environments |
| 164 | # that may not have the required dependencies. |
| 165 | # ========================================================== |
| 166 | |
| 167 | # ========================================================== |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 168 | # Build the host static library: libaapt2 |
| 169 | # ========================================================== |
| 170 | include $(CLEAR_VARS) |
| 171 | LOCAL_MODULE := libaapt2 |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 172 | LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
| 173 | LOCAL_MODULE_HOST_OS := darwin linux windows |
| 174 | LOCAL_CFLAGS := $(cFlags) |
| 175 | LOCAL_CFLAGS_darwin := $(cFlags_darwin) |
| 176 | LOCAL_CFLAGS_windows := $(cFlags_windows) |
| 177 | LOCAL_CPPFLAGS := $(cppFlags) |
| 178 | LOCAL_C_INCLUDES := $(protoIncludes) |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 179 | LOCAL_SRC_FILES := $(sources) |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 180 | LOCAL_STATIC_LIBRARIES := $(hostStaticLibs) |
| 181 | LOCAL_STATIC_LIBRARIES_windows := $(hostStaticLibs_windows) |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 182 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 183 | |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 184 | # ========================================================== |
| 185 | # Build the host tests: libaapt2_tests |
| 186 | # ========================================================== |
| 187 | include $(CLEAR_VARS) |
| 188 | LOCAL_MODULE := libaapt2_tests |
| 189 | LOCAL_MODULE_TAGS := tests |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 190 | LOCAL_MODULE_HOST_OS := darwin linux windows |
| 191 | LOCAL_CFLAGS := $(cFlags) |
| 192 | LOCAL_CFLAGS_darwin := $(cFlags_darwin) |
| 193 | LOCAL_CFLAGS_windows := $(cFlags_windows) |
| 194 | LOCAL_CPPFLAGS := $(cppFlags) |
| 195 | LOCAL_C_INCLUDES := $(protoIncludes) |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 196 | LOCAL_SRC_FILES := $(testSources) |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 197 | LOCAL_STATIC_LIBRARIES := libaapt2 $(hostStaticLibs) |
| 198 | LOCAL_STATIC_LIBRARIES_windows := $(hostStaticLibs_windows) |
| 199 | LOCAL_LDLIBS := $(hostLdLibs) |
| 200 | LOCAL_LDLIBS_darwin := $(hostLdLibs_darwin) |
| 201 | LOCAL_LDLIBS_linux := $(hostLdLibs_linux) |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 202 | include $(BUILD_HOST_NATIVE_TEST) |
| 203 | |
| 204 | # ========================================================== |
| 205 | # Build the host executable: aapt2 |
| 206 | # ========================================================== |
| 207 | include $(CLEAR_VARS) |
| 208 | LOCAL_MODULE := aapt2 |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 209 | LOCAL_MODULE_HOST_OS := darwin linux windows |
| 210 | LOCAL_CFLAGS := $(cFlags) |
| 211 | LOCAL_CFLAGS_darwin := $(cFlags_darwin) |
| 212 | LOCAL_CFLAGS_windows := $(cFlags_windows) |
| 213 | LOCAL_CPPFLAGS := $(cppFlags) |
| 214 | LOCAL_C_INCLUDES := $(protoIncludes) |
| Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 215 | LOCAL_SRC_FILES := $(main) $(toolSources) |
| Adam Lesinski | 803c7c8 | 2016-04-06 16:09:43 -0700 | [diff] [blame] | 216 | LOCAL_STATIC_LIBRARIES := libaapt2 $(hostStaticLibs) |
| 217 | LOCAL_STATIC_LIBRARIES_windows := $(hostStaticLibs_windows) |
| 218 | LOCAL_LDLIBS := $(hostLdLibs) |
| 219 | LOCAL_LDLIBS_darwin := $(hostLdLibs_darwin) |
| 220 | LOCAL_LDLIBS_linux := $(hostLdLibs_linux) |
| Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 221 | include $(BUILD_HOST_EXECUTABLE) |
| 222 | |
| Adam Lesinski | 64587af | 2016-02-18 18:33:06 -0800 | [diff] [blame] | 223 | ifeq ($(ONE_SHOT_MAKEFILE),) |
| 224 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
| 225 | endif |