1LOCAL_PATH:= $(call my-dir)
2
3# the library
4# ============================================================
5include $(CLEAR_VARS)
6
7LOCAL_SRC_FILES := $(call all-java-files-under, src)
8            
9LOCAL_MODULE := android.policy
10
11include $(BUILD_JAVA_LIBRARY)
12
13# additionally, build unit tests in a separate .apk
14include $(call all-makefiles-under,$(LOCAL_PATH))
15