Etar-Calendar/Android.mk
Andy McFadden d46b1150f9 More Calendar unbundling
A few minor items:
- Remove an unnecessary import, missed in previous checkin.
- Drop guava from libs (not currently needed).
- Add commented-out build lines for the benefit of anyone who wants
  to experiment.

Bug 4575374

Change-Id: I5669e41008a97810f9c23247447e91637c54bc22
2011-06-09 15:18:23 -07:00

25 lines
540 B
Makefile

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_EMMA_COVERAGE_FILTER := +com.android.calendar.*
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(call all-java-files-under,src)
# bundled
LOCAL_STATIC_JAVA_LIBRARIES += android-common
# unbundled
#LOCAL_STATIC_JAVA_LIBRARIES := android-common
#LOCAL_SDK_VERSION := current
LOCAL_PACKAGE_NAME := Calendar
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
include $(BUILD_PACKAGE)
# Use the following include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))