resolved conflicts for merge of d9de6588 to master

Change-Id: I3d7d6744b4f0d7c10bf001c87c0abbb4cb6885ef
This commit is contained in:
Jesse Wilson
2010-09-16 17:57:47 -07:00
2 changed files with 47 additions and 29 deletions

View File

@@ -23,7 +23,36 @@ PRODUCT_PROPERTY_OVERRIDES := \
ro.config.alarm_alert=Alarm_Classic.ogg
PRODUCT_PACKAGES := \
bouncycastle \
core \
core-junit \
create_test_dmtrace \
dalvikvm \
dexdeps \
dexdump \
dexlist \
dexopt \
dmtracedump \
dvz \
dx \
ext \
framework-res \
hprof-conv \
icu.dat \
jasmin \
jasmin.jar \
libcrypto \
libdex \
libdvm \
libexpat \
libicui18n \
libicuuc \
libjavacore \
libnativehelper \
libsqlite_jni \
libssl \
libz \
sqlite-jdbc \
Browser \
CarHomeLauncher \
Contacts \
@@ -43,3 +72,18 @@ PRODUCT_PACKAGES := \
DefaultContainerService \
Bugreport \
ip
# force WITH_HOST_DALVIK on userdebug and user builds.
# TODO: this is redundant with a similar clause in build/core/main.mk.
ifneq (,$(filter userdebug user,$(TARGET_BUILD_VARIANT)))
WITH_HOST_DALVIK := true
endif
# host-only dependencies
ifeq ($(WITH_HOST_DALVIK),true)
PRODUCT_PACKAGES += \
bouncycastle-hostdex \
core-hostdex \
libjavacore-host
endif