Android.mk revision 2cb6c60c0d2de3bc743c043aca963db6fe52662f
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# 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.
17services := \
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)'
27LOCAL_STATIC_JAVA_LIBRARIES := $(addprefix services.,$(services))
28
29include $(BUILD_JAVA_LIBRARY)
30
31# native library
32# =============================================================
33
34include $(CLEAR_VARS)
35
36LOCAL_SRC_FILES :=
37LOCAL_SHARED_LIBRARIES :=
38
39# include all the jni subdirs to collect their sources
40include $(wildcard $(LOCAL_PATH)/*/jni/Android.mk)
41
42LOCAL_CFLAGS += -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES
43
44ifeq ($(WITH_MALLOC_LEAK_CHECK),true)
45    LOCAL_CFLAGS += -DMALLOC_LEAK_CHECK
46endif
47
48LOCAL_MODULE:= libandroid_servers
49
50include $(BUILD_SHARED_LIBRARY)
51
52# =============================================================
53
54ifeq (,$(ONE_SHOT_MAKEFILE))
55# A full make is happening, so make everything.
56include $(call all-makefiles-under,$(LOCAL_PATH))
57else
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.
62include $(patsubst %,$(LOCAL_PATH)/%/Android.mk,$(services))
63endif
64
65