Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
Adam Lesinski | 898c13d | 2014-01-28 15:34:50 -0800 | [diff] [blame] | 3 | # merge all required services into one jar |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 4 | # ============================================================ |
| 5 | include $(CLEAR_VARS) |
| 6 | |
Adam Lesinski | 898c13d | 2014-01-28 15:34:50 -0800 | [diff] [blame] | 7 | LOCAL_MODULE := services |
Mathieu Chartier | a30bc6a | 2017-02-28 13:04:43 -0800 | [diff] [blame] | 8 | LOCAL_DEX_PREOPT_APP_IMAGE := true |
| 9 | LOCAL_DEX_PREOPT_GENERATE_PROFILE := true |
| 10 | LOCAL_DEX_PREOPT_PROFILE_CLASS_LISTING := $(LOCAL_PATH)/profile-classes |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 11 | |
Adam Lesinski | 898c13d | 2014-01-28 15:34:50 -0800 | [diff] [blame] | 12 | LOCAL_SRC_FILES := $(call all-java-files-under,java) |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 13 | |
Alan Viverette | 12cf314 | 2014-03-17 15:31:04 -0700 | [diff] [blame] | 14 | # EventLogTags files. |
| 15 | LOCAL_SRC_FILES += \ |
| 16 | core/java/com/android/server/EventLogTags.logtags |
| 17 | |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 18 | # Uncomment to enable output of certain warnings (deprecated, unchecked) |
| 19 | # LOCAL_JAVACFLAGS := -Xlint |
| 20 | |
| 21 | # Services that will be built as part of services.jar |
| 22 | # These should map to directory names relative to this |
| 23 | # Android.mk. |
| 24 | services := \ |
| 25 | core \ |
| 26 | accessibility \ |
| 27 | appwidget \ |
Felipe Leme | 5381aa4 | 2016-10-13 09:02:32 -0700 | [diff] [blame] | 28 | autofill \ |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 29 | backup \ |
Eugene Susla | 0d3dd12 | 2017-04-18 10:56:37 -0700 | [diff] [blame] | 30 | companion \ |
Allen Hair | 1f556e3 | 2016-11-11 15:42:50 -0800 | [diff] [blame] | 31 | coverage\ |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 32 | devicepolicy \ |
Mike Lockwood | 5781cd5 | 2015-03-27 13:23:41 -0700 | [diff] [blame] | 33 | midi \ |
Lorenzo Colitti | eca9b9b | 2015-03-10 01:36:14 +0900 | [diff] [blame] | 34 | net \ |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 35 | print \ |
Amith Yamasani | f20d640 | 2014-05-24 15:34:37 -0700 | [diff] [blame] | 36 | restrictions \ |
Suprabh Shukla | 6472501 | 2016-06-15 13:19:28 -0700 | [diff] [blame] | 37 | retaildemo \ |
Adam Lesinski | 0debc9a | 2014-07-16 19:09:13 -0700 | [diff] [blame] | 38 | usage \ |
Dianne Hackborn | 91097de | 2014-04-04 18:02:06 -0700 | [diff] [blame] | 39 | usb \ |
| 40 | voiceinteraction |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 41 | |
| 42 | # The convention is to name each service module 'services.$(module_name)' |
Jim Miller | 40e4645 | 2016-12-16 18:38:53 -0800 | [diff] [blame] | 43 | LOCAL_STATIC_JAVA_LIBRARIES := $(addprefix services.,$(services)) \ |
Andreas Huber | f13eb2e | 2017-04-13 10:45:47 -0700 | [diff] [blame] | 44 | android.hidl.base-V1.0-java-static \ |
| 45 | android.hardware.biometrics.fingerprint-V2.1-java-static |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 46 | |
Allen Hair | 1f556e3 | 2016-11-11 15:42:50 -0800 | [diff] [blame] | 47 | ifeq ($(EMMA_INSTRUMENT_FRAMEWORK),true) |
| 48 | LOCAL_EMMA_INSTRUMENT := true |
| 49 | endif |
| 50 | |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 51 | include $(BUILD_JAVA_LIBRARY) |
| 52 | |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 53 | # native library |
| 54 | # ============================================================= |
| 55 | |
| 56 | include $(CLEAR_VARS) |
| 57 | |
| 58 | LOCAL_SRC_FILES := |
| 59 | LOCAL_SHARED_LIBRARIES := |
| 60 | |
| 61 | # include all the jni subdirs to collect their sources |
| 62 | include $(wildcard $(LOCAL_PATH)/*/jni/Android.mk) |
| 63 | |
| 64 | LOCAL_CFLAGS += -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES |
| 65 | |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 66 | LOCAL_MODULE:= libandroid_servers |
| 67 | |
| 68 | include $(BUILD_SHARED_LIBRARY) |
| 69 | |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 70 | # ============================================================= |
| 71 | |
Amith Yamasani | 22eba28 | 2014-01-09 15:38:12 -0800 | [diff] [blame] | 72 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 73 | # A full make is happening, so make everything. |
| 74 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
| 75 | else |
| 76 | # If we ran an mm[m] command, we still want to build the individual |
| 77 | # services that we depend on. This differs from the above condition |
| 78 | # by only including service makefiles and not any tests or other |
| 79 | # modules. |
| 80 | include $(patsubst %,$(LOCAL_PATH)/%/Android.mk,$(services)) |
Amith Yamasani | 22eba28 | 2014-01-09 15:38:12 -0800 | [diff] [blame] | 81 | endif |
| 82 | |