| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 1 | # 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 |  | 
 | 15 | LOCAL_PATH:= $(call my-dir) | 
 | 16 |  | 
| Adam Lesinski | 4bf5810 | 2014-11-03 11:21:19 -0800 | [diff] [blame] | 17 | # libandroidfw is partially built for the host (used by obbtool, aapt, and others) | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 18 | # These files are common to host and target builds. | 
 | 19 |  | 
 | 20 | commonSources := \ | 
 | 21 |     Asset.cpp \ | 
 | 22 |     AssetDir.cpp \ | 
 | 23 |     AssetManager.cpp \ | 
| Roozbeh Pournader | b927c55 | 2016-01-15 11:23:42 -0800 | [diff] [blame] | 24 |     LocaleData.cpp \ | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 25 |     misc.cpp \ | 
 | 26 |     ObbFile.cpp \ | 
 | 27 |     ResourceTypes.cpp \ | 
 | 28 |     StreamingZipInflater.cpp \ | 
| Adam Lesinski | f90f2f8d | 2014-06-06 14:27:00 -0700 | [diff] [blame] | 29 |     TypeWrappers.cpp \ | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 30 |     ZipFileRO.cpp \ | 
 | 31 |     ZipUtils.cpp | 
 | 32 |  | 
 | 33 | deviceSources := \ | 
 | 34 |     $(commonSources) \ | 
 | 35 |     BackupData.cpp \ | 
 | 36 |     BackupHelpers.cpp \ | 
| Michael Wright | 3d3fe50 | 2015-12-04 17:59:42 +0000 | [diff] [blame] | 37 |     CursorWindow.cpp \ | 
 | 38 |     DisplayEventDispatcher.cpp | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 39 |  | 
| Adam Lesinski | 4bf5810 | 2014-11-03 11:21:19 -0800 | [diff] [blame] | 40 | hostSources := $(commonSources) | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 41 |  | 
 | 42 | # For the host | 
 | 43 | # ===================================================== | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 44 | include $(CLEAR_VARS) | 
 | 45 |  | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 46 | LOCAL_MODULE:= libandroidfw | 
| Dan Willemsen | 4aa679f | 2015-08-19 11:13:56 -0700 | [diff] [blame] | 47 | LOCAL_MODULE_HOST_OS := darwin linux windows | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 48 | LOCAL_CFLAGS += -DSTATIC_ANDROIDFW_FOR_TOOLS | 
| Andreas Gampe | 2204f0b | 2014-10-21 23:04:54 -0700 | [diff] [blame] | 49 | LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code | 
| Adam Lesinski | 4bf5810 | 2014-11-03 11:21:19 -0800 | [diff] [blame] | 50 | LOCAL_SRC_FILES:= $(hostSources) | 
 | 51 | LOCAL_C_INCLUDES := external/zlib | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 52 |  | 
 | 53 | include $(BUILD_HOST_STATIC_LIBRARY) | 
 | 54 |  | 
 | 55 |  | 
 | 56 | # For the device | 
 | 57 | # ===================================================== | 
 | 58 |  | 
 | 59 | include $(CLEAR_VARS) | 
 | 60 |  | 
| Adam Lesinski | 4bf5810 | 2014-11-03 11:21:19 -0800 | [diff] [blame] | 61 | LOCAL_MODULE:= libandroidfw | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 62 | LOCAL_SRC_FILES:= $(deviceSources) | 
| Adam Lesinski | 4bf5810 | 2014-11-03 11:21:19 -0800 | [diff] [blame] | 63 | LOCAL_C_INCLUDES := \ | 
| Adam Lesinski | 4bf5810 | 2014-11-03 11:21:19 -0800 | [diff] [blame] | 64 |     system/core/include | 
| Narayan Kamath | 9c8ba96 | 2015-04-28 09:23:26 +0100 | [diff] [blame] | 65 | LOCAL_STATIC_LIBRARIES := libziparchive libbase | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 66 | LOCAL_SHARED_LIBRARIES := \ | 
| Andreas Gampe | 2204f0b | 2014-10-21 23:04:54 -0700 | [diff] [blame] | 67 |     libbinder \ | 
 | 68 |     liblog \ | 
 | 69 |     libcutils \ | 
| Michael Wright | 3d3fe50 | 2015-12-04 17:59:42 +0000 | [diff] [blame] | 70 |     libgui \ | 
| Andreas Gampe | 2204f0b | 2014-10-21 23:04:54 -0700 | [diff] [blame] | 71 |     libutils \ | 
 | 72 |     libz | 
| Mathias Agopian | 83c64e6 | 2012-02-20 16:58:20 -0800 | [diff] [blame] | 73 |  | 
| Andreas Gampe | 2204f0b | 2014-10-21 23:04:54 -0700 | [diff] [blame] | 74 | LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 75 |  | 
| Adam Lesinski | 16c4d15 | 2014-01-24 13:27:13 -0800 | [diff] [blame] | 76 | include $(BUILD_SHARED_LIBRARY) | 
 | 77 |  | 
 | 78 |  | 
 | 79 | # Include subdirectory makefiles | 
 | 80 | # ============================================================ | 
 | 81 |  | 
 | 82 | # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework | 
 | 83 | # team really wants is to build the stuff defined by this makefile. | 
 | 84 | ifeq (,$(ONE_SHOT_MAKEFILE)) | 
 | 85 | include $(call first-makefiles-under,$(LOCAL_PATH)) | 
 | 86 | endif |