The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | # the library |
| 4 | # ============================================================ |
| 5 | include $(CLEAR_VARS) |
| 6 | |
| 7 | LOCAL_SRC_FILES := \ |
Doug Zongker | ab5c49c | 2009-12-04 10:31:43 -0800 | [diff] [blame] | 8 | $(call all-subdir-java-files) \ |
Doug Zongker | 2bec3d4 | 2009-12-04 12:52:44 -0800 | [diff] [blame] | 9 | com/android/server/EventLogTags.logtags \ |
| 10 | com/android/server/am/EventLogTags.logtags |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 11 | |
| 12 | LOCAL_MODULE:= services |
| 13 | |
| 14 | LOCAL_JAVA_LIBRARIES := android.policy |
| 15 | |
| 16 | include $(BUILD_JAVA_LIBRARY) |
| 17 | |
| 18 | include $(BUILD_DROIDDOC) |
| 19 | |