Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b1663130 authored by Sreedhar's avatar Sreedhar
Browse files

frameworks: Fix javadoc error for SDK build

some of the internal frameworks core packages have
references to oss frameworks core packages.Droiddoc
is failing if these oss core packages are not
present in the path.This is causing SDB build
to fail. New variable VENDOR_FRAMEWORKS_CORE_JARS
is added to includes the needed oss frameworks
core jars. Adding the variable to modules causing
the sdk build issue fixes this.

CRs-fixed: 571837

Change-Id: I4cd70cc8fc161f841838a01491e6347e760b7f08
parent 3e656914
Loading
Loading
Loading
Loading

core/vendor-jars.mk

0 → 100644
+14 −0
Original line number Original line Diff line number Diff line
# This file contains list of  vendor framework jars
# Make sure this file inclusion is added after
# LOCAL_JAVA_LIBRARIES defined in your module


# Add vendor jars here
VENDOR_FRAMEWORKS_CORE_JARS := \
     org.codeaurora.Performance


#Update the LOCAL_JAVA_LIBRARIES
ifneq ($(strip $(VENDOR_FRAMEWORKS_CORE_JARS)),)
LOCAL_JAVA_LIBRARIES += $(VENDOR_FRAMEWORKS_CORE_JARS)
endif
+4 −0
Original line number Original line Diff line number Diff line
@@ -15,4 +15,8 @@ LOCAL_JAVA_LIBRARIES := android.policy conscrypt telephony-common


include $(BUILD_JAVA_LIBRARY)
include $(BUILD_JAVA_LIBRARY)


#Include the vendor-jars.mk to add dependency frameworks
#core packages by vendor to  LOCAL_JAVA_LIBRARIES
-include frameworks/base/core/vendor-jars.mk

include $(BUILD_DROIDDOC)
include $(BUILD_DROIDDOC)