OSDN Git Service

NPE fix for SyncStorageEngine read authority am: a962d9eba7
[android-x86/frameworks-base.git] / services / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2
3 # merge all required services into one jar
4 # ============================================================
5 include $(CLEAR_VARS)
6
7 LOCAL_MODULE := services
8
9 LOCAL_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.
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))
28
29 include $(BUILD_JAVA_LIBRARY)
30
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
52 # =============================================================
53
54 ifeq (,$(ONE_SHOT_MAKEFILE))
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))
63 endif
64