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 | # |
| 16 | |
| 17 | # This tool is prebuilt if we're doing an app-only build. |
| 18 | ifeq ($(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)),) |
| 19 | |
| 20 | # ========================================================== |
| 21 | # Setup some common variables for the different build |
| 22 | # targets here. |
| 23 | # ========================================================== |
| 24 | LOCAL_PATH:= $(call my-dir) |
| 25 | |
| 26 | main := Main.cpp |
| 27 | sources := \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 28 | compile/IdAssigner.cpp \ |
| 29 | compile/Png.cpp \ |
Adam Lesinski | 393b5f0 | 2015-12-17 13:03:11 -0800 | [diff] [blame] | 30 | compile/PseudolocaleGenerator.cpp \ |
| 31 | compile/Pseudolocalizer.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 32 | compile/XmlIdCollector.cpp \ |
Adam Lesinski | 6a00817 | 2016-02-02 17:02:58 -0800 | [diff] [blame] | 33 | filter/ConfigFilter.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 34 | flatten/Archive.cpp \ |
| 35 | flatten/TableFlattener.cpp \ |
| 36 | flatten/XmlFlattener.cpp \ |
Adam Lesinski | a6fe345 | 2015-12-09 15:20:52 -0800 | [diff] [blame] | 37 | io/FileSystem.cpp \ |
| 38 | io/ZipArchive.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 39 | link/AutoVersioner.cpp \ |
Adam Lesinski | 2ae4a87 | 2015-11-02 16:10:55 -0800 | [diff] [blame] | 40 | link/ManifestFixer.cpp \ |
Adam Lesinski | e4bb9eb | 2016-02-12 22:18:51 -0800 | [diff] [blame] | 41 | link/ProductFilter.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 42 | link/PrivateAttributeMover.cpp \ |
| 43 | link/ReferenceLinker.cpp \ |
| 44 | link/TableMerger.cpp \ |
| 45 | link/XmlReferenceLinker.cpp \ |
| 46 | process/SymbolTable.cpp \ |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 47 | proto/ProtoHelpers.cpp \ |
| 48 | proto/TableProtoDeserializer.cpp \ |
| 49 | proto/TableProtoSerializer.cpp \ |
Adam Lesinski | 355f285 | 2016-02-13 20:26:45 -0800 | [diff] [blame^] | 50 | split/TableSplitter.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 51 | unflatten/BinaryResourceParser.cpp \ |
| 52 | unflatten/ResChunkPullParser.cpp \ |
| 53 | util/BigBuffer.cpp \ |
| 54 | util/Files.cpp \ |
| 55 | util/Util.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 56 | ConfigDescription.cpp \ |
Adam Lesinski | 330edcd | 2015-05-04 17:40:56 -0700 | [diff] [blame] | 57 | Debug.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 58 | Flags.cpp \ |
Adam Lesinski | ca5638f | 2015-10-21 14:42:43 -0700 | [diff] [blame] | 59 | java/AnnotationProcessor.cpp \ |
| 60 | java/JavaClassGenerator.cpp \ |
| 61 | java/ManifestClassGenerator.cpp \ |
| 62 | java/ProguardRules.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 63 | Locale.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 64 | Resource.cpp \ |
| 65 | ResourceParser.cpp \ |
| 66 | ResourceTable.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 67 | ResourceUtils.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 68 | ResourceValues.cpp \ |
| 69 | SdkConstants.cpp \ |
| 70 | StringPool.cpp \ |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 71 | xml/XmlDom.cpp \ |
| 72 | xml/XmlPullParser.cpp \ |
| 73 | xml/XmlUtil.cpp |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 74 | |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 75 | sources += Format.proto |
| 76 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 77 | testSources := \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 78 | compile/IdAssigner_test.cpp \ |
Adam Lesinski | 393b5f0 | 2015-12-17 13:03:11 -0800 | [diff] [blame] | 79 | compile/PseudolocaleGenerator_test.cpp \ |
| 80 | compile/Pseudolocalizer_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 81 | compile/XmlIdCollector_test.cpp \ |
Adam Lesinski | 6a00817 | 2016-02-02 17:02:58 -0800 | [diff] [blame] | 82 | filter/ConfigFilter_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 83 | flatten/TableFlattener_test.cpp \ |
| 84 | flatten/XmlFlattener_test.cpp \ |
| 85 | link/AutoVersioner_test.cpp \ |
Adam Lesinski | 2ae4a87 | 2015-11-02 16:10:55 -0800 | [diff] [blame] | 86 | link/ManifestFixer_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 87 | link/PrivateAttributeMover_test.cpp \ |
Adam Lesinski | e4bb9eb | 2016-02-12 22:18:51 -0800 | [diff] [blame] | 88 | link/ProductFilter_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 89 | link/ReferenceLinker_test.cpp \ |
| 90 | link/TableMerger_test.cpp \ |
| 91 | link/XmlReferenceLinker_test.cpp \ |
| 92 | process/SymbolTable_test.cpp \ |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 93 | proto/TableProtoSerializer_test.cpp \ |
Adam Lesinski | 355f285 | 2016-02-13 20:26:45 -0800 | [diff] [blame^] | 94 | split/TableSplitter_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 95 | util/BigBuffer_test.cpp \ |
| 96 | util/Maybe_test.cpp \ |
| 97 | util/StringPiece_test.cpp \ |
| 98 | util/Util_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 99 | ConfigDescription_test.cpp \ |
Adam Lesinski | b274e35 | 2015-11-06 15:14:35 -0800 | [diff] [blame] | 100 | java/AnnotationProcessor_test.cpp \ |
Adam Lesinski | ca5638f | 2015-10-21 14:42:43 -0700 | [diff] [blame] | 101 | java/JavaClassGenerator_test.cpp \ |
| 102 | java/ManifestClassGenerator_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 103 | Locale_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 104 | Resource_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 105 | ResourceParser_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 106 | ResourceTable_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 107 | ResourceUtils_test.cpp \ |
Adam Lesinski | 355f285 | 2016-02-13 20:26:45 -0800 | [diff] [blame^] | 108 | SdkConstants_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 109 | StringPool_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 110 | ValueVisitor_test.cpp \ |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 111 | xml/XmlDom_test.cpp \ |
| 112 | xml/XmlPullParser_test.cpp \ |
| 113 | xml/XmlUtil_test.cpp |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 114 | |
| 115 | toolSources := \ |
| 116 | compile/Compile.cpp \ |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 117 | dump/Dump.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 118 | link/Link.cpp |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 119 | |
Adam Lesinski | feefeb4 | 2015-04-03 12:44:40 -0700 | [diff] [blame] | 120 | hostLdLibs := |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 121 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 122 | hostStaticLibs := \ |
| 123 | libandroidfw \ |
| 124 | libutils \ |
| 125 | liblog \ |
| 126 | libcutils \ |
| 127 | libexpat \ |
Adam Lesinski | 98aa3ad | 2015-04-06 11:46:52 -0700 | [diff] [blame] | 128 | libziparchive-host \ |
Narayan Kamath | 231e054 | 2015-04-29 16:32:23 +0100 | [diff] [blame] | 129 | libpng \ |
| 130 | libbase |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 131 | |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 132 | hostSharedLibs := \ |
| 133 | libprotobuf-cpp-lite |
| 134 | |
Adam Lesinski | feefeb4 | 2015-04-03 12:44:40 -0700 | [diff] [blame] | 135 | ifneq ($(strip $(USE_MINGW)),) |
| 136 | hostStaticLibs += libz |
| 137 | else |
| 138 | hostLdLibs += -lz |
| 139 | endif |
| 140 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 141 | cFlags := -Wall -Werror -Wno-unused-parameter -UNDEBUG |
Adam Lesinski | 2ae4a87 | 2015-11-02 16:10:55 -0800 | [diff] [blame] | 142 | cppFlags := -std=c++11 -Wno-missing-field-initializers -fno-exceptions -fno-rtti |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 143 | protoIncludes := $(call generated-sources-dir-for,STATIC_LIBRARIES,libaapt2,HOST) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 144 | |
| 145 | # ========================================================== |
| 146 | # Build the host static library: libaapt2 |
| 147 | # ========================================================== |
| 148 | include $(CLEAR_VARS) |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 149 | LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 150 | LOCAL_MODULE := libaapt2 |
| 151 | |
| 152 | LOCAL_SRC_FILES := $(sources) |
Elliott Hughes | 51348d2 | 2015-07-21 11:39:21 -0700 | [diff] [blame] | 153 | LOCAL_STATIC_LIBRARIES += $(hostStaticLibs) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 154 | LOCAL_CFLAGS += $(cFlags) |
| 155 | LOCAL_CPPFLAGS += $(cppFlags) |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 156 | LOCAL_C_INCLUDES += $(protoIncludes) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 157 | |
| 158 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 159 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 160 | # ========================================================== |
| 161 | # Build the host tests: libaapt2_tests |
| 162 | # ========================================================== |
| 163 | include $(CLEAR_VARS) |
| 164 | LOCAL_MODULE := libaapt2_tests |
| 165 | LOCAL_MODULE_TAGS := tests |
| 166 | |
| 167 | LOCAL_SRC_FILES := $(testSources) |
| 168 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 169 | LOCAL_STATIC_LIBRARIES += libaapt2 $(hostStaticLibs) |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 170 | LOCAL_SHARED_LIBRARIES += $(hostSharedLibs) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 171 | LOCAL_LDLIBS += $(hostLdLibs) |
| 172 | LOCAL_CFLAGS += $(cFlags) |
| 173 | LOCAL_CPPFLAGS += $(cppFlags) |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 174 | LOCAL_C_INCLUDES += $(protoIncludes) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 175 | |
| 176 | include $(BUILD_HOST_NATIVE_TEST) |
| 177 | |
| 178 | # ========================================================== |
| 179 | # Build the host executable: aapt2 |
| 180 | # ========================================================== |
| 181 | include $(CLEAR_VARS) |
| 182 | LOCAL_MODULE := aapt2 |
| 183 | |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 184 | LOCAL_SRC_FILES := $(main) $(toolSources) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 185 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 186 | LOCAL_STATIC_LIBRARIES += libaapt2 $(hostStaticLibs) |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 187 | LOCAL_SHARED_LIBRARIES += $(hostSharedLibs) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 188 | LOCAL_LDLIBS += $(hostLdLibs) |
| 189 | LOCAL_CFLAGS += $(cFlags) |
| 190 | LOCAL_CPPFLAGS += $(cppFlags) |
Adam Lesinski | 59e04c6 | 2016-02-04 15:59:23 -0800 | [diff] [blame] | 191 | LOCAL_C_INCLUDES += $(protoIncludes) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 192 | |
| 193 | include $(BUILD_HOST_EXECUTABLE) |
| 194 | |
| 195 | endif # No TARGET_BUILD_APPS or TARGET_BUILD_PDK |