blob: e74a3dfbb839fbb3b5e0cc4dc1aa5df542f9c620 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001#
Adam Lesinskifab50872014-04-16 14:40:42 -07002# Copyright (C) 2014 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.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080015#
16
Joe Onorato74905e52010-06-10 18:34:55 -070017# This tool is prebuilt if we're doing an app-only build.
Ying Wang74bebf62014-03-07 15:55:14 -080018ifeq ($(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)),)
Joe Onorato74905e52010-06-10 18:34:55 -070019
Adam Lesinskifab50872014-04-16 14:40:42 -070020# ==========================================================
21# Setup some common variables for the different build
22# targets here.
23# ==========================================================
24LOCAL_PATH:= $(call my-dir)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025
Adam Lesinskifab50872014-04-16 14:40:42 -070026aaptMain := Main.cpp
27aaptSources := \
28 AaptAssets.cpp \
29 AaptConfig.cpp \
30 AaptUtil.cpp \
Adam Lesinskiad2d07d2014-08-27 16:21:08 -070031 AaptXml.cpp \
Adam Lesinskifab50872014-04-16 14:40:42 -070032 ApkBuilder.cpp \
33 Command.cpp \
34 CrunchCache.cpp \
35 FileFinder.cpp \
Adam Lesinski4bf58102014-11-03 11:21:19 -080036 Images.cpp \
Adam Lesinskifab50872014-04-16 14:40:42 -070037 Package.cpp \
Adam Lesinski4bf58102014-11-03 11:21:19 -080038 pseudolocalize.cpp \
Adam Lesinski4bf58102014-11-03 11:21:19 -080039 Resource.cpp \
Adam Lesinskifab50872014-04-16 14:40:42 -070040 ResourceFilter.cpp \
41 ResourceIdCache.cpp \
42 ResourceTable.cpp \
Mathias Agopian55e3d602009-06-05 14:56:35 -070043 SourcePos.cpp \
Adam Lesinski4bf58102014-11-03 11:21:19 -080044 StringPool.cpp \
Adam Lesinskifab50872014-04-16 14:40:42 -070045 WorkQueue.cpp \
Adam Lesinski4bf58102014-11-03 11:21:19 -080046 XMLNode.cpp \
Mathias Agopian55e3d602009-06-05 14:56:35 -070047 ZipEntry.cpp \
Adam Lesinski4bf58102014-11-03 11:21:19 -080048 ZipFile.cpp
Mathias Agopian55e3d602009-06-05 14:56:35 -070049
Adam Lesinskifab50872014-04-16 14:40:42 -070050aaptTests := \
51 tests/AaptConfig_test.cpp \
52 tests/AaptGroupEntry_test.cpp \
Igor Viarheichykcbb1e672015-05-14 18:47:00 -070053 tests/Pseudolocales_test.cpp \
Adam Lesinskibeb9e332015-08-14 13:16:18 -070054 tests/ResourceFilter_test.cpp \
55 tests/ResourceTable_test.cpp
Bjorn Bringertfb903a42013-03-18 21:17:26 +000056
Adam Lesinskifab50872014-04-16 14:40:42 -070057aaptHostStaticLibs := \
58 libandroidfw \
59 libpng \
Adam Lesinskifab50872014-04-16 14:40:42 -070060 libutils \
Sergio Girod90d8d62016-06-28 18:26:10 +010061 liblog \
Adam Lesinskifab50872014-04-16 14:40:42 -070062 libcutils \
63 libexpat \
Colin Cross9a1a3bc2016-08-26 11:15:17 -070064 libziparchive \
Dan Willemsen85aee732017-09-08 21:26:31 -070065 libbase \
66 libz
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067
Dan Willemsen896f0182017-09-08 22:02:41 -070068aaptCFlags := -Wall -Werror
Adam Lesinskiad751222014-08-18 14:06:38 -070069
Adam Lesinskifab50872014-04-16 14:40:42 -070070# ==========================================================
71# Build the host static library: libaapt
72# ==========================================================
73include $(CLEAR_VARS)
74
75LOCAL_MODULE := libaapt
Dan Willemsen4aa679f2015-08-19 11:13:56 -070076LOCAL_MODULE_HOST_OS := darwin linux windows
77LOCAL_CFLAGS := -Wno-format-y2k -DSTATIC_ANDROIDFW_FOR_TOOLS $(aaptCFlags)
Dan Willemsen4aa679f2015-08-19 11:13:56 -070078LOCAL_CFLAGS_darwin := -D_DARWIN_UNLIMITED_STREAMS
Adam Lesinski4bf58102014-11-03 11:21:19 -080079LOCAL_SRC_FILES := $(aaptSources)
Dan Willemsen4aa679f2015-08-19 11:13:56 -070080LOCAL_STATIC_LIBRARIES := $(aaptHostStaticLibs)
Adam Lesinskifab50872014-04-16 14:40:42 -070081
82include $(BUILD_HOST_STATIC_LIBRARY)
83
Adam Lesinskifab50872014-04-16 14:40:42 -070084# ==========================================================
85# Build the host executable: aapt
86# ==========================================================
87include $(CLEAR_VARS)
88
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089LOCAL_MODULE := aapt
Dan Willemsen4aa679f2015-08-19 11:13:56 -070090LOCAL_MODULE_HOST_OS := darwin linux windows
Dan Willemsen896f0182017-09-08 22:02:41 -070091LOCAL_CFLAGS := -DAAPT_VERSION=\"$(BUILD_NUMBER_FROM_FILE)\" $(aaptCFlags)
Adam Lesinski4bf58102014-11-03 11:21:19 -080092LOCAL_SRC_FILES := $(aaptMain)
Dan Willemsen4aa679f2015-08-19 11:13:56 -070093LOCAL_STATIC_LIBRARIES := libaapt $(aaptHostStaticLibs)
Adam Lesinskifab50872014-04-16 14:40:42 -070094
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080095include $(BUILD_HOST_EXECUTABLE)
96
Adam Lesinskifab50872014-04-16 14:40:42 -070097
98# ==========================================================
99# Build the host tests: libaapt_tests
100# ==========================================================
101include $(CLEAR_VARS)
102
103LOCAL_MODULE := libaapt_tests
Dan Willemsen4aa679f2015-08-19 11:13:56 -0700104LOCAL_CFLAGS := $(aaptCFlags)
Dan Willemsen4aa679f2015-08-19 11:13:56 -0700105LOCAL_SRC_FILES := $(aaptTests)
Dan Willemsen4aa679f2015-08-19 11:13:56 -0700106LOCAL_STATIC_LIBRARIES := libaapt $(aaptHostStaticLibs)
Adam Lesinskifab50872014-04-16 14:40:42 -0700107
108include $(BUILD_HOST_NATIVE_TEST)
109
110
Ying Wang74bebf62014-03-07 15:55:14 -0800111endif # No TARGET_BUILD_APPS or TARGET_BUILD_PDK