aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHashcode <hashcode0f@gmail.com>2015-02-16 21:18:25 -0800
committerHashBang <hashbang173@gmail.com>2015-02-17 10:01:52 -0500
commit904202640faac7baf80ef042983d4eb68a9b4e41 (patch)
tree66d813bd3f09a5d81d123529be3f1b266c8aa89f
parentd7b35f024717537fddf7c3d63f21193b03fe9874 (diff)
swap from PRODUCT_PROPERTY_OVERRIDES to ADDITIONAL_BUILD_PROPERTIES
No need to use custom build flags. Standard append of properties works. Change-Id: I3c96944bbb441ef2b8df6f28dc62a3234c17a010
-rw-r--r--common.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/common.mk b/common.mk
index 154b411..347e236 100644
--- a/common.mk
+++ b/common.mk
@@ -65,16 +65,16 @@ PRODUCT_PACKAGES += \
com.android.future.usb.accessory \
su
-PRODUCT_PROPERTY_OVERRIDES += \
+ADDITIONAL_BUILD_PROPERTIES += \
ro.sf.lcd_density=160 \
ro.sf.hwrotation=270
# Set dirty regions off
-PRODUCT_PROPERTY_OVERRIDES += \
+ADDITIONAL_BUILD_PROPERTIES += \
hwui.render_dirty_regions=false
# wifi-only device
-PRODUCT_PROPERTY_OVERRIDES += \
+ADDITIONAL_BUILD_PROPERTIES += \
ro.carrier=wifi-only
$(call inherit-product-if-exists, vendor/amazon/omap4-common/omap4-common-vendor-540_120.mk)