diff options
Diffstat (limited to 'Android.mk')
| -rw-r--r-- | Android.mk | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk index d2b0d99b7da6..8b137eaeb7ff 100644 --- a/Android.mk +++ b/Android.mk @@ -31,6 +31,10 @@ framework_res_source_path := APPS/framework-res_intermediates/src # So we first build the framework as a monolithic static library then split it # up into smaller pieces. # ============================================================ + +# embedded builds use nothing in frameworks/base +ifneq ($(ANDROID_BUILD_EMBEDDED),true) + include $(CLEAR_VARS) # FRAMEWORKS_BASE_SUBDIRS comes from build/core/pathmap.mk @@ -105,9 +109,9 @@ LOCAL_SRC_FILES += \ core/java/android/content/IIntentReceiver.aidl \ core/java/android/content/IIntentSender.aidl \ core/java/android/content/IOnPrimaryClipChangedListener.aidl \ - core/java/android/content/IAnonymousSyncAdapter.aidl \ core/java/android/content/ISyncAdapter.aidl \ core/java/android/content/ISyncContext.aidl \ + core/java/android/content/ISyncServiceAdapter.aidl \ core/java/android/content/ISyncStatusObserver.aidl \ core/java/android/content/pm/IPackageDataObserver.aidl \ core/java/android/content/pm/IPackageDeleteObserver.aidl \ @@ -264,6 +268,9 @@ LOCAL_SRC_FILES += \ telephony/java/com/android/internal/telephony/IPhoneStateListener.aidl \ telephony/java/com/android/internal/telephony/IPhoneSubInfo.aidl \ telephony/java/com/android/internal/telephony/ITelephony.aidl \ + telephony/java/com/android/internal/telephony/IThirdPartyCallListener.aidl \ + telephony/java/com/android/internal/telephony/IThirdPartyCallProvider.aidl \ + telephony/java/com/android/internal/telephony/IThirdPartyCallService.aidl \ telephony/java/com/android/internal/telephony/ISms.aidl \ telephony/java/com/android/internal/telephony/ITelephonyRegistry.aidl \ telephony/java/com/android/internal/telephony/IWapPushManager.aidl \ @@ -286,7 +293,7 @@ LOCAL_JAVA_LIBRARIES := bouncycastle conscrypt core core-junit ext okhttp LOCAL_MODULE := framework-base -LOCAL_JAR_EXCLUDE_FILES := none +LOCAL_RMTYPEDEFS := true include $(BUILD_STATIC_JAVA_LIBRARY) @@ -943,3 +950,5 @@ include $(BUILD_JAVA_LIBRARY) ifeq (,$(ONE_SHOT_MAKEFILE)) include $(call first-makefiles-under,$(LOCAL_PATH)) endif + +endif # ANDROID_BUILD_EMBEDDED |