blob: b7014454771c5958591dd52daaa1986028991330 [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 \
60 liblog \
61 libutils \
62 libcutils \
63 libexpat \
Narayan Kamath9c8ba962015-04-28 09:23:26 +010064 libziparchive-host \
65 libbase
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066
Colin Cross06e04f72015-07-16 17:55:31 -070067aaptCFlags := -DAAPT_VERSION=\"$(BUILD_NUMBER_FROM_FILE)\"
Colin Cross01f18562015-04-08 17:29:00 -070068aaptCFlags += -Wall -Werror
Adam Lesinskiad751222014-08-18 14:06:38 -070069
Dan Willemsen4aa679f2015-08-19 11:13:56 -070070aaptHostLdLibs_linux := -lrt -ldl -lpthread
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080071
Raphael29355532010-04-13 15:21:32 -070072# Statically link libz for MinGW (Win SDK under Linux),
73# and dynamically link for all others.
Dan Willemsen4aa679f2015-08-19 11:13:56 -070074aaptHostStaticLibs_windows := libz
75aaptHostLdLibs_linux += -lz
76aaptHostLdLibs_darwin := -lz
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077
Adam Lesinskifab50872014-04-16 14:40:42 -070078
79# ==========================================================
80# Build the host static library: libaapt
81# ==========================================================
82include $(CLEAR_VARS)
83
84LOCAL_MODULE := libaapt
Dan Willemsen4aa679f2015-08-19 11:13:56 -070085LOCAL_MODULE_HOST_OS := darwin linux windows
86LOCAL_CFLAGS := -Wno-format-y2k -DSTATIC_ANDROIDFW_FOR_TOOLS $(aaptCFlags)
87LOCAL_CPPFLAGS := $(aaptCppFlags)
88LOCAL_CFLAGS_darwin := -D_DARWIN_UNLIMITED_STREAMS
Adam Lesinski4bf58102014-11-03 11:21:19 -080089LOCAL_SRC_FILES := $(aaptSources)
Dan Willemsen4aa679f2015-08-19 11:13:56 -070090LOCAL_STATIC_LIBRARIES := $(aaptHostStaticLibs)
91LOCAL_STATIC_LIBRARIES_windows := $(aaptHostStaticLibs_windows)
Adam Lesinskifab50872014-04-16 14:40:42 -070092
93include $(BUILD_HOST_STATIC_LIBRARY)
94
Adam Lesinskifab50872014-04-16 14:40:42 -070095# ==========================================================
96# Build the host executable: aapt
97# ==========================================================
98include $(CLEAR_VARS)
99
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100LOCAL_MODULE := aapt
Dan Willemsen4aa679f2015-08-19 11:13:56 -0700101LOCAL_MODULE_HOST_OS := darwin linux windows
102LOCAL_CFLAGS := $(aaptCFlags)
103LOCAL_CPPFLAGS := $(aaptCppFlags)
104LOCAL_LDLIBS_darwin := $(aaptHostLdLibs_darwin)
105LOCAL_LDLIBS_linux := $(aaptHostLdLibs_linux)
Adam Lesinski4bf58102014-11-03 11:21:19 -0800106LOCAL_SRC_FILES := $(aaptMain)
Dan Willemsen4aa679f2015-08-19 11:13:56 -0700107LOCAL_STATIC_LIBRARIES := libaapt $(aaptHostStaticLibs)
108LOCAL_STATIC_LIBRARIES_windows := $(aaptHostStaticLibs_windows)
Adam Lesinskifab50872014-04-16 14:40:42 -0700109
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110include $(BUILD_HOST_EXECUTABLE)
111
Adam Lesinskifab50872014-04-16 14:40:42 -0700112
113# ==========================================================
114# Build the host tests: libaapt_tests
115# ==========================================================
116include $(CLEAR_VARS)
117
118LOCAL_MODULE := libaapt_tests
Dan Willemsen4aa679f2015-08-19 11:13:56 -0700119LOCAL_CFLAGS := $(aaptCFlags)
120LOCAL_CPPFLAGS := $(aaptCppFlags)
121LOCAL_LDLIBS_darwin := $(aaptHostLdLibs_darwin)
122LOCAL_LDLIBS_linux := $(aaptHostLdLibs_linux)
123LOCAL_SRC_FILES := $(aaptTests)
124LOCAL_C_INCLUDES := $(LOCAL_PATH)
125LOCAL_STATIC_LIBRARIES := libaapt $(aaptHostStaticLibs)
126LOCAL_STATIC_LIBRARIES_windows := $(aaptHostStaticLibs_windows)
Adam Lesinskifab50872014-04-16 14:40:42 -0700127
128include $(BUILD_HOST_NATIVE_TEST)
129
130
Ying Wang74bebf62014-03-07 15:55:14 -0800131endif # No TARGET_BUILD_APPS or TARGET_BUILD_PDK