blob: 14d05fdf6ee8b1ba00e56f964fab3ed8b2620713 [file] [log] [blame]
Fabien Sanglard19160202017-01-12 14:24:31 -05001//
Adam Lesinskid48944a2017-02-21 14:22:30 -08002// Copyright (C) 2017 The Android Open Source Project
Fabien Sanglard19160202017-01-12 14:24:31 -05003//
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
17toolSources = [
Adam Lesinskid0f492d2017-04-03 18:12:45 -070018 "cmd/Compile.cpp",
19 "cmd/Diff.cpp",
20 "cmd/Dump.cpp",
21 "cmd/Link.cpp",
22 "cmd/Optimize.cpp",
23 "cmd/Util.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -050024]
25
26cc_defaults {
27 name: "aapt_defaults",
28 cflags: [
29 "-Wall",
30 "-Werror",
31 "-Wno-unused-parameter",
32 ],
33 cppflags: [
34 "-Wno-missing-field-initializers",
35 "-fno-exceptions",
36 "-fno-rtti",
37 ],
38 target: {
39 windows: {
40 enabled: true,
41 cflags: ["-Wno-maybe-uninitialized"],
42 static_libs: ["libz"],
43 },
44 darwin: {
45 cflags: ["-D_DARWIN_UNLIMITED_STREAMS"],
46 host_ldlibs: ["-lz"],
47 },
48 linux: {
49 host_ldlibs: ["-lz"],
50 },
51 },
52 static_libs: [
53 "libandroidfw",
54 "libutils",
55 "liblog",
56 "libcutils",
57 "libexpat",
58 "libziparchive",
59 "libpng",
60 "libbase",
61 "libprotobuf-cpp-lite",
62 ],
63 group_static_libs: true,
64}
65
66// ==========================================================
67// NOTE: Do not add any shared libraries.
68// AAPT2 is built to run on many environments
69// that may not have the required dependencies.
70// ==========================================================
71
72// ==========================================================
73// Build the host static library: aapt2
74// ==========================================================
75cc_library_host_static {
76 name: "libaapt2",
77 srcs: [
78 "compile/IdAssigner.cpp",
79 "compile/InlineXmlFormatParser.cpp",
80 "compile/NinePatch.cpp",
81 "compile/Png.cpp",
82 "compile/PngChunkFilter.cpp",
83 "compile/PngCrunch.cpp",
84 "compile/PseudolocaleGenerator.cpp",
85 "compile/Pseudolocalizer.cpp",
86 "compile/XmlIdCollector.cpp",
Shane Farmer74cdea32017-05-12 16:22:36 -070087 "configuration/ConfigurationParser.cpp",
Shane Farmer57669432017-06-19 12:52:04 -070088 "filter/AbiFilter.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -050089 "filter/ConfigFilter.cpp",
90 "flatten/Archive.cpp",
91 "flatten/TableFlattener.cpp",
92 "flatten/XmlFlattener.cpp",
Adam Lesinski06460ef2017-03-14 18:52:13 -070093 "io/BigBufferStreams.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -050094 "io/File.cpp",
95 "io/FileSystem.cpp",
Adam Lesinskid0f492d2017-04-03 18:12:45 -070096 "io/Util.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -050097 "io/ZipArchive.cpp",
98 "link/AutoVersioner.cpp",
99 "link/ManifestFixer.cpp",
100 "link/ProductFilter.cpp",
101 "link/PrivateAttributeMover.cpp",
102 "link/ReferenceLinker.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -0500103 "link/TableMerger.cpp",
Adam Lesinskic744ae82017-05-17 19:28:38 -0700104 "link/XmlCompatVersioner.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -0500105 "link/XmlNamespaceRemover.cpp",
106 "link/XmlReferenceLinker.cpp",
Adam Lesinskid48944a2017-02-21 14:22:30 -0800107 "optimize/ResourceDeduper.cpp",
108 "optimize/VersionCollapser.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -0500109 "process/SymbolTable.cpp",
110 "proto/ProtoHelpers.cpp",
111 "proto/TableProtoDeserializer.cpp",
112 "proto/TableProtoSerializer.cpp",
113 "split/TableSplitter.cpp",
Adam Lesinski66ea8402017-06-28 11:44:11 -0700114 "text/Unicode.cpp",
115 "text/Utf8Iterator.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -0500116 "unflatten/BinaryResourceParser.cpp",
117 "unflatten/ResChunkPullParser.cpp",
118 "util/BigBuffer.cpp",
119 "util/Files.cpp",
120 "util/Util.cpp",
121 "ConfigDescription.cpp",
122 "Debug.cpp",
123 "DominatorTree.cpp",
124 "Flags.cpp",
125 "java/AnnotationProcessor.cpp",
126 "java/ClassDefinition.cpp",
127 "java/JavaClassGenerator.cpp",
128 "java/ManifestClassGenerator.cpp",
129 "java/ProguardRules.cpp",
Pierre Lecesneff759e62017-02-01 00:29:25 +0000130 "LoadedApk.cpp",
Fabien Sanglard19160202017-01-12 14:24:31 -0500131 "Locale.cpp",
132 "Resource.cpp",
133 "ResourceParser.cpp",
134 "ResourceTable.cpp",
135 "ResourceUtils.cpp",
136 "ResourceValues.cpp",
137 "SdkConstants.cpp",
138 "StringPool.cpp",
139 "xml/XmlActionExecutor.cpp",
140 "xml/XmlDom.cpp",
141 "xml/XmlPullParser.cpp",
142 "xml/XmlUtil.cpp",
143 "Format.proto",
144 ],
145 proto: {
146 export_proto_headers: true,
147 },
148 defaults: ["aapt_defaults"],
149}
150
151// ==========================================================
152// Build the host shared library: aapt2_jni
153// ==========================================================
154cc_library_host_shared {
155 name: "libaapt2_jni",
156 srcs: toolSources + ["jni/aapt2_jni.cpp"],
157 static_libs: ["libaapt2"],
158 defaults: ["aapt_defaults"],
159}
160
161// ==========================================================
162// Build the host tests: aapt2_tests
163// ==========================================================
164cc_test_host {
165 name: "aapt2_tests",
Adam Lesinskibab4ef52017-06-01 15:22:57 -0700166 srcs: [
167 "test/Common.cpp",
168 "**/*_test.cpp",
169 ],
Shane Farmer74cdea32017-05-12 16:22:36 -0700170 static_libs: [
171 "libaapt2",
172 "libgmock",
173 ],
Fabien Sanglard19160202017-01-12 14:24:31 -0500174 defaults: ["aapt_defaults"],
175}
176
177// ==========================================================
178// Build the host executable: aapt2
179// ==========================================================
180cc_binary_host {
181 name: "aapt2",
182 srcs: ["Main.cpp"] + toolSources,
183 static_libs: ["libaapt2"],
184 defaults: ["aapt_defaults"],
185}