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 |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 8 | |
Adam Lesinski | 898c13d | 2014-01-28 15:34:50 -0800 | [diff] [blame] | 9 | LOCAL_SRC_FILES := $(call all-java-files-under,java) |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 10 | |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 11 | # Uncomment to enable output of certain warnings (deprecated, unchecked) |
| 12 | # LOCAL_JAVACFLAGS := -Xlint |
| 13 | |
| 14 | # Services that will be built as part of services.jar |
| 15 | # These should map to directory names relative to this |
| 16 | # Android.mk. |
| 17 | services := \ |
| 18 | core \ |
| 19 | accessibility \ |
| 20 | appwidget \ |
| 21 | backup \ |
| 22 | devicepolicy \ |
| 23 | print \ |
| 24 | usb |
| 25 | |
| 26 | # The convention is to name each service module 'services.$(module_name)' |
| 27 | LOCAL_STATIC_JAVA_LIBRARIES := $(addprefix services.,$(services)) |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 28 | |
| 29 | include $(BUILD_JAVA_LIBRARY) |
| 30 | |
Amith Yamasani | 9158825 | 2013-11-22 08:25:26 -0800 | [diff] [blame] | 31 | # native library |
| 32 | # ============================================================= |
| 33 | |
| 34 | include $(CLEAR_VARS) |
| 35 | |
| 36 | LOCAL_SRC_FILES := |
| 37 | LOCAL_SHARED_LIBRARIES := |
| 38 | |
| 39 | # include all the jni subdirs to collect their sources |
| 40 | include $(wildcard $(LOCAL_PATH)/*/jni/Android.mk) |
| 41 | |
| 42 | LOCAL_CFLAGS += -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES |
| 43 | |
| 44 | ifeq ($(WITH_MALLOC_LEAK_CHECK),true) |
| 45 | LOCAL_CFLAGS += -DMALLOC_LEAK_CHECK |
| 46 | endif |
| 47 | |
| 48 | LOCAL_MODULE:= libandroid_servers |
| 49 | |
| 50 | include $(BUILD_SHARED_LIBRARY) |
| 51 | |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 52 | # ============================================================= |
| 53 | |
Amith Yamasani | 22eba28 | 2014-01-09 15:38:12 -0800 | [diff] [blame] | 54 | ifeq (,$(ONE_SHOT_MAKEFILE)) |
Adam Lesinski | 2cb6c60 | 2014-02-14 17:19:56 -0800 | [diff] [blame] | 55 | # A full make is happening, so make everything. |
| 56 | include $(call all-makefiles-under,$(LOCAL_PATH)) |
| 57 | else |
| 58 | # If we ran an mm[m] command, we still want to build the individual |
| 59 | # services that we depend on. This differs from the above condition |
| 60 | # by only including service makefiles and not any tests or other |
| 61 | # modules. |
| 62 | include $(patsubst %,$(LOCAL_PATH)/%/Android.mk,$(services)) |
Amith Yamasani | 22eba28 | 2014-01-09 15:38:12 -0800 | [diff] [blame] | 63 | endif |
| 64 | |