1LOCAL_PATH:= $(call my-dir)
2
3# merge all required services into one jar
4# ============================================================
5include $(CLEAR_VARS)
6
7LOCAL_MODULE := services
8
9LOCAL_SRC_FILES := $(call all-java-files-under,java)
10
11# EventLogTags files.
12LOCAL_SRC_FILES += \
13        core/java/com/android/server/EventLogTags.logtags
14
15# Uncomment to enable output of certain warnings (deprecated, unchecked)
16# LOCAL_JAVACFLAGS := -Xlint
17
18# Services that will be built as part of services.jar
19# These should map to directory names relative to this
20# Android.mk.
21services := \
22    core \
23    accessibility \
24    appwidget \
25    backup \
26    devicepolicy \
27    midi \
28    net \
29    print \
30    restrictions \
31    usage \
32    usb \
33    voiceinteraction
34
35# The convention is to name each service module 'services.$(module_name)'
36LOCAL_STATIC_JAVA_LIBRARIES := $(addprefix services.,$(services))
37
38include $(BUILD_JAVA_LIBRARY)
39
40# native library
41# =============================================================
42
43include $(CLEAR_VARS)
44
45LOCAL_SRC_FILES :=
46LOCAL_SHARED_LIBRARIES :=
47
48# include all the jni subdirs to collect their sources
49include $(wildcard $(LOCAL_PATH)/*/jni/Android.mk)
50
51LOCAL_CFLAGS += -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES
52
53LOCAL_MODULE:= libandroid_servers
54
55include $(BUILD_SHARED_LIBRARY)
56
57# =============================================================
58
59ifeq (,$(ONE_SHOT_MAKEFILE))
60# A full make is happening, so make everything.
61include $(call all-makefiles-under,$(LOCAL_PATH))
62else
63# If we ran an mm[m] command, we still want to build the individual
64# services that we depend on. This differs from the above condition
65# by only including service makefiles and not any tests or other
66# modules.
67include $(patsubst %,$(LOCAL_PATH)/%/Android.mk,$(services))
68endif
69
70