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 | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 41 | link/PrivateAttributeMover.cpp \ |
| 42 | link/ReferenceLinker.cpp \ |
| 43 | link/TableMerger.cpp \ |
| 44 | link/XmlReferenceLinker.cpp \ |
| 45 | process/SymbolTable.cpp \ |
| 46 | unflatten/BinaryResourceParser.cpp \ |
| 47 | unflatten/ResChunkPullParser.cpp \ |
| 48 | util/BigBuffer.cpp \ |
| 49 | util/Files.cpp \ |
| 50 | util/Util.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 51 | ConfigDescription.cpp \ |
Adam Lesinski | 330edcd | 2015-05-04 17:40:56 -0700 | [diff] [blame] | 52 | Debug.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 53 | Flags.cpp \ |
Adam Lesinski | ca5638f | 2015-10-21 14:42:43 -0700 | [diff] [blame] | 54 | java/AnnotationProcessor.cpp \ |
| 55 | java/JavaClassGenerator.cpp \ |
| 56 | java/ManifestClassGenerator.cpp \ |
| 57 | java/ProguardRules.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 58 | Locale.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 59 | Resource.cpp \ |
| 60 | ResourceParser.cpp \ |
| 61 | ResourceTable.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 62 | ResourceUtils.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 63 | ResourceValues.cpp \ |
| 64 | SdkConstants.cpp \ |
| 65 | StringPool.cpp \ |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 66 | xml/XmlDom.cpp \ |
| 67 | xml/XmlPullParser.cpp \ |
| 68 | xml/XmlUtil.cpp |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 69 | |
| 70 | testSources := \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 71 | compile/IdAssigner_test.cpp \ |
Adam Lesinski | 393b5f0 | 2015-12-17 13:03:11 -0800 | [diff] [blame] | 72 | compile/PseudolocaleGenerator_test.cpp \ |
| 73 | compile/Pseudolocalizer_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 74 | compile/XmlIdCollector_test.cpp \ |
Adam Lesinski | 6a00817 | 2016-02-02 17:02:58 -0800 | [diff] [blame] | 75 | filter/ConfigFilter_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 76 | flatten/FileExportWriter_test.cpp \ |
| 77 | flatten/TableFlattener_test.cpp \ |
| 78 | flatten/XmlFlattener_test.cpp \ |
| 79 | link/AutoVersioner_test.cpp \ |
Adam Lesinski | 2ae4a87 | 2015-11-02 16:10:55 -0800 | [diff] [blame] | 80 | link/ManifestFixer_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 81 | link/PrivateAttributeMover_test.cpp \ |
| 82 | link/ReferenceLinker_test.cpp \ |
| 83 | link/TableMerger_test.cpp \ |
| 84 | link/XmlReferenceLinker_test.cpp \ |
| 85 | process/SymbolTable_test.cpp \ |
| 86 | unflatten/FileExportHeaderReader_test.cpp \ |
| 87 | util/BigBuffer_test.cpp \ |
| 88 | util/Maybe_test.cpp \ |
| 89 | util/StringPiece_test.cpp \ |
| 90 | util/Util_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 91 | ConfigDescription_test.cpp \ |
Adam Lesinski | b274e35 | 2015-11-06 15:14:35 -0800 | [diff] [blame] | 92 | java/AnnotationProcessor_test.cpp \ |
Adam Lesinski | ca5638f | 2015-10-21 14:42:43 -0700 | [diff] [blame] | 93 | java/JavaClassGenerator_test.cpp \ |
| 94 | java/ManifestClassGenerator_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 95 | Locale_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 96 | Resource_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 97 | ResourceParser_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 98 | ResourceTable_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 99 | ResourceUtils_test.cpp \ |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 100 | StringPool_test.cpp \ |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 101 | ValueVisitor_test.cpp \ |
Adam Lesinski | 467f171 | 2015-11-16 17:35:44 -0800 | [diff] [blame] | 102 | xml/XmlDom_test.cpp \ |
| 103 | xml/XmlPullParser_test.cpp \ |
| 104 | xml/XmlUtil_test.cpp |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 105 | |
| 106 | toolSources := \ |
| 107 | compile/Compile.cpp \ |
| 108 | link/Link.cpp |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 109 | |
Adam Lesinski | feefeb4 | 2015-04-03 12:44:40 -0700 | [diff] [blame] | 110 | hostLdLibs := |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 111 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 112 | hostStaticLibs := \ |
| 113 | libandroidfw \ |
| 114 | libutils \ |
| 115 | liblog \ |
| 116 | libcutils \ |
| 117 | libexpat \ |
Adam Lesinski | 98aa3ad | 2015-04-06 11:46:52 -0700 | [diff] [blame] | 118 | libziparchive-host \ |
Narayan Kamath | 231e054 | 2015-04-29 16:32:23 +0100 | [diff] [blame] | 119 | libpng \ |
| 120 | libbase |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 121 | |
Adam Lesinski | feefeb4 | 2015-04-03 12:44:40 -0700 | [diff] [blame] | 122 | ifneq ($(strip $(USE_MINGW)),) |
| 123 | hostStaticLibs += libz |
| 124 | else |
| 125 | hostLdLibs += -lz |
| 126 | endif |
| 127 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 128 | cFlags := -Wall -Werror -Wno-unused-parameter -UNDEBUG |
Adam Lesinski | 2ae4a87 | 2015-11-02 16:10:55 -0800 | [diff] [blame] | 129 | cppFlags := -std=c++11 -Wno-missing-field-initializers -fno-exceptions -fno-rtti |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 130 | |
| 131 | # ========================================================== |
| 132 | # Build the host static library: libaapt2 |
| 133 | # ========================================================== |
| 134 | include $(CLEAR_VARS) |
| 135 | LOCAL_MODULE := libaapt2 |
| 136 | |
| 137 | LOCAL_SRC_FILES := $(sources) |
Elliott Hughes | 51348d2 | 2015-07-21 11:39:21 -0700 | [diff] [blame] | 138 | LOCAL_STATIC_LIBRARIES += $(hostStaticLibs) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 139 | LOCAL_CFLAGS += $(cFlags) |
| 140 | LOCAL_CPPFLAGS += $(cppFlags) |
| 141 | |
| 142 | include $(BUILD_HOST_STATIC_LIBRARY) |
| 143 | |
| 144 | |
| 145 | # ========================================================== |
| 146 | # Build the host tests: libaapt2_tests |
| 147 | # ========================================================== |
| 148 | include $(CLEAR_VARS) |
| 149 | LOCAL_MODULE := libaapt2_tests |
| 150 | LOCAL_MODULE_TAGS := tests |
| 151 | |
| 152 | LOCAL_SRC_FILES := $(testSources) |
| 153 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 154 | LOCAL_STATIC_LIBRARIES += libaapt2 $(hostStaticLibs) |
| 155 | LOCAL_LDLIBS += $(hostLdLibs) |
| 156 | LOCAL_CFLAGS += $(cFlags) |
| 157 | LOCAL_CPPFLAGS += $(cppFlags) |
| 158 | |
| 159 | include $(BUILD_HOST_NATIVE_TEST) |
| 160 | |
| 161 | # ========================================================== |
| 162 | # Build the host executable: aapt2 |
| 163 | # ========================================================== |
| 164 | include $(CLEAR_VARS) |
| 165 | LOCAL_MODULE := aapt2 |
| 166 | |
Adam Lesinski | 1ab598f | 2015-08-14 14:26:04 -0700 | [diff] [blame] | 167 | LOCAL_SRC_FILES := $(main) $(toolSources) |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 168 | |
Adam Lesinski | 6f6ceb7 | 2014-11-14 14:48:12 -0800 | [diff] [blame] | 169 | LOCAL_STATIC_LIBRARIES += libaapt2 $(hostStaticLibs) |
| 170 | LOCAL_LDLIBS += $(hostLdLibs) |
| 171 | LOCAL_CFLAGS += $(cFlags) |
| 172 | LOCAL_CPPFLAGS += $(cppFlags) |
| 173 | |
| 174 | include $(BUILD_HOST_EXECUTABLE) |
| 175 | |
| 176 | endif # No TARGET_BUILD_APPS or TARGET_BUILD_PDK |