The Android Open Source Project | 1f838aa | 2009-03-03 19:32:13 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | # the library |
| 4 | # ============================================================ |
| 5 | include $(CLEAR_VARS) |
| 6 | |
Brett Chabot | be81f4f | 2010-06-14 17:06:34 -0700 | [diff] [blame] | 7 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
Dianne Hackborn | 746c4c4 | 2010-02-24 20:03:34 -0800 | [diff] [blame] | 8 | |
Joe Onorato | a5c5137 | 2010-04-06 20:21:30 -0500 | [diff] [blame] | 9 | LOCAL_MODULE := android.policy |
The Android Open Source Project | 1f838aa | 2009-03-03 19:32:13 -0800 | [diff] [blame] | 10 | |
Joe Onorato | a5c5137 | 2010-04-06 20:21:30 -0500 | [diff] [blame] | 11 | include $(BUILD_JAVA_LIBRARY) |
Brett Chabot | be81f4f | 2010-06-14 17:06:34 -0700 | [diff] [blame] | 12 | |
| 13 | # additionally, build unit tests in a separate .apk |
| 14 | include $(call all-makefiles-under,$(LOCAL_PATH)) |