blob: 7689256f5b075260fa1007e193c3b41db8494937 [file] [log] [blame]
Adam Lesinski16c4d152014-01-24 13:27:13 -08001# Copyright (C) 2010 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH:= $(call my-dir)
16
Adam Lesinski4bf58102014-11-03 11:21:19 -080017# libandroidfw is partially built for the host (used by obbtool, aapt, and others)
Adam Lesinski16c4d152014-01-24 13:27:13 -080018# These files are common to host and target builds.
19
20commonSources := \
21 Asset.cpp \
22 AssetDir.cpp \
23 AssetManager.cpp \
Adam Lesinski4452e132016-10-12 07:47:28 -070024 AttributeResolution.cpp \
Roozbeh Pournaderb927c552016-01-15 11:23:42 -080025 LocaleData.cpp \
Adam Lesinski16c4d152014-01-24 13:27:13 -080026 misc.cpp \
27 ObbFile.cpp \
28 ResourceTypes.cpp \
29 StreamingZipInflater.cpp \
Adam Lesinskif90f2f8d2014-06-06 14:27:00 -070030 TypeWrappers.cpp \
Adam Lesinski16c4d152014-01-24 13:27:13 -080031 ZipFileRO.cpp \
32 ZipUtils.cpp
33
34deviceSources := \
35 $(commonSources) \
36 BackupData.cpp \
37 BackupHelpers.cpp \
Michael Wright3d3fe502015-12-04 17:59:42 +000038 CursorWindow.cpp \
39 DisplayEventDispatcher.cpp
Adam Lesinski16c4d152014-01-24 13:27:13 -080040
Adam Lesinski4bf58102014-11-03 11:21:19 -080041hostSources := $(commonSources)
Adam Lesinski16c4d152014-01-24 13:27:13 -080042
43# For the host
44# =====================================================
Adam Lesinski16c4d152014-01-24 13:27:13 -080045include $(CLEAR_VARS)
46
Adam Lesinski16c4d152014-01-24 13:27:13 -080047LOCAL_MODULE:= libandroidfw
Dan Willemsen4aa679f2015-08-19 11:13:56 -070048LOCAL_MODULE_HOST_OS := darwin linux windows
Adam Lesinski16c4d152014-01-24 13:27:13 -080049LOCAL_CFLAGS += -DSTATIC_ANDROIDFW_FOR_TOOLS
Andreas Gampe2204f0b2014-10-21 23:04:54 -070050LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
Adam Lesinski4bf58102014-11-03 11:21:19 -080051LOCAL_SRC_FILES:= $(hostSources)
52LOCAL_C_INCLUDES := external/zlib
John Reckf6113af2016-11-03 16:16:47 -070053LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
54LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
Adam Lesinski16c4d152014-01-24 13:27:13 -080055
56include $(BUILD_HOST_STATIC_LIBRARY)
57
58
59# For the device
60# =====================================================
61
62include $(CLEAR_VARS)
63
Adam Lesinski4bf58102014-11-03 11:21:19 -080064LOCAL_MODULE:= libandroidfw
Adam Lesinski16c4d152014-01-24 13:27:13 -080065LOCAL_SRC_FILES:= $(deviceSources)
Adam Lesinski4bf58102014-11-03 11:21:19 -080066LOCAL_C_INCLUDES := \
Adam Lesinski4bf58102014-11-03 11:21:19 -080067 system/core/include
Adam Lesinski16c4d152014-01-24 13:27:13 -080068LOCAL_SHARED_LIBRARIES := \
Jaekyun Seok2b14c5e2016-11-23 16:28:34 +090069 libziparchive \
70 libbase \
Andreas Gampe2204f0b2014-10-21 23:04:54 -070071 libbinder \
72 liblog \
73 libcutils \
Michael Wright3d3fe502015-12-04 17:59:42 +000074 libgui \
Andreas Gampe2204f0b2014-10-21 23:04:54 -070075 libutils \
76 libz
Mathias Agopian83c64e62012-02-20 16:58:20 -080077
John Reckf6113af2016-11-03 16:16:47 -070078LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
79LOCAL_C_INCLUDES += $(LOCAL_PATH)/include
Andreas Gampe2204f0b2014-10-21 23:04:54 -070080LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
Adam Lesinski16c4d152014-01-24 13:27:13 -080081
Adam Lesinski16c4d152014-01-24 13:27:13 -080082include $(BUILD_SHARED_LIBRARY)
83
84
85# Include subdirectory makefiles
86# ============================================================
87
88# If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
89# team really wants is to build the stuff defined by this makefile.
90ifeq (,$(ONE_SHOT_MAKEFILE))
91include $(call first-makefiles-under,$(LOCAL_PATH))
92endif