blob: b42e137aabddec2d8d22027879c2837a112f3916 [file] [log] [blame]
Alberto970ceb8342015-01-02 14:43:15 +01001PRODUCT_BUILD_PROP_OVERRIDES += BUILD_UTC_DATE=0
2
3PRODUCT_PROPERTY_OVERRIDES += \
4 keyguard.no_require_sim=true \
5 ro.com.google.clientidbase=android-google \
6 ro.url.legal=http://www.google.com/intl/%s/mobile/android/basic/phone-legal.html \
7 ro.url.legal.android_privacy=http://www.google.com/intl/%s/mobile/android/basic/privacy.html \
8 ro.com.android.wifi-watchlist=GoogleGuest \
9 ro.setupwizard.enterprise_mode=1 \
10 ro.com.android.dateformat=MM-dd-yyyy \
11 ro.com.android.dataroaming=false
12
13PRODUCT_PROPERTY_OVERRIDES += \
14 ro.build.selinux=1
15
16# Thank you, please drive thru!
17PRODUCT_PROPERTY_OVERRIDES += persist.sys.dun.override=0
18
19# Backup Tool
20PRODUCT_COPY_FILES += \
Tom Marshall97749de2014-12-12 11:56:04 -080021 vendor/aosp/prebuilt/common/bin/backuptool.sh:install/bin/backuptool.sh \
22 vendor/aosp/prebuilt/common/bin/backuptool.functions:install/bin/backuptool.functions \
Alberto970ceb8342015-01-02 14:43:15 +010023 vendor/aosp/prebuilt/common/bin/50-base.sh:system/addon.d/50-base.sh \
24 vendor/aosp/prebuilt/common/bin/blacklist:system/addon.d/blacklist
25
Alberto970ceb8342015-01-02 14:43:15 +010026# Bootanimation
27PRODUCT_COPY_FILES += \
28 vendor/aosp/prebuilt/common/media/bootanimation.zip:system/media/bootanimation.zip
29
30# init.d support
31PRODUCT_COPY_FILES += \
32 vendor/aosp/prebuilt/common/bin/sysinit:system/bin/sysinit \
33 vendor/aosp/prebuilt/common/etc/init.d/00banner:system/etc/init.d/00banner \
34 vendor/aosp/prebuilt/common/etc/init.d/90userinit:system/etc/init.d/90userinit
35
36# Init file
37PRODUCT_COPY_FILES += \
38 vendor/aosp/prebuilt/common/etc/init.local.rc:root/init.cm.rc
39
40# Bring in camera effects
41PRODUCT_COPY_FILES += \
42 vendor/aosp/prebuilt/common/media/LMprec_508.emd:system/media/LMprec_508.emd \
43 vendor/aosp/prebuilt/common/media/PFFprec_600.emd:system/media/PFFprec_600.emd
44
45# Enable SIP+VoIP on all targets
46PRODUCT_COPY_FILES += \
47 frameworks/native/data/etc/android.software.sip.voip.xml:system/etc/permissions/android.software.sip.voip.xml
48
49# Enable wireless Xbox 360 controller support
50PRODUCT_COPY_FILES += \
51 frameworks/base/data/keyboards/Vendor_045e_Product_028e.kl:system/usr/keylayout/Vendor_045e_Product_0719.kl
52
53# Misc packages
54PRODUCT_PACKAGES += \
55 BluetoothExt \
Ricardo Cerqueira2535a2e2015-01-04 01:55:24 +000056 libemoji \
57 Terminal
Alberto970ceb8342015-01-02 14:43:15 +010058
59# Stagefright FFMPEG plugin
60PRODUCT_PACKAGES += \
Steve Kondikd10712b2015-07-08 09:53:12 -070061 libffmpeg_extractor \
62 libffmpeg_omx \
Steve Kondikd1ac4dd2015-06-18 02:22:35 -070063 media_codecs_ffmpeg.xml
Alberto970ceb8342015-01-02 14:43:15 +010064
Steve Kondikd10712b2015-07-08 09:53:12 -070065PRODUCT_PROPERTY_OVERRIDES += \
66 media.sf.omx-plugin=libffmpeg_omx.so \
67 media.sf.extractor-plugin=libffmpeg_extractor.so
68
Alberto970ceb8342015-01-02 14:43:15 +010069# Telephony packages
70PRODUCT_PACKAGES += \
71 CellBroadcastReceiver \
Alberto972f8ecb62015-01-30 12:38:43 +010072 Stk
Alberto970ceb8342015-01-02 14:43:15 +010073
74# Mms depends on SoundRecorder for recorded audio messages
75PRODUCT_PACKAGES += \
76 SoundRecorder
77
78# World APN list
79PRODUCT_COPY_FILES += \
80 vendor/aosp/prebuilt/common/etc/apns-conf.xml:system/etc/apns-conf.xml
81
Alberto970ceb8342015-01-02 14:43:15 +010082# Selective SPN list for operator number who has the problem.
83PRODUCT_COPY_FILES += \
84 vendor/aosp/prebuilt/common/etc/selective-spn-conf.xml:system/etc/selective-spn-conf.xml
85
86# Overlays & Include LatinIME dictionaries
87PRODUCT_PACKAGE_OVERLAYS += \
88 vendor/aosp/overlay/common \
89 vendor/aosp/overlay/dictionaries
90
91# by default, do not update the recovery with system updates
92PRODUCT_PROPERTY_OVERRIDES += persist.sys.recovery_update=false
93
Alberto97ca810c92015-06-22 15:22:04 +020094# F-AOSP Version
95FAOSP_VERSION := $(TARGET_DEVICE)-$(shell date -u +%Y%m%d)
96PRODUCT_PROPERTY_OVERRIDES += ro.faosp.version=$(FAOSP_VERSION)
97
LuK1337c2175e72015-02-10 16:05:49 +010098# Chromium Prebuilt
99ifeq ($(PRODUCT_PREBUILT_WEBVIEWCHROMIUM),yes)
100-include prebuilts/chromium/$(TARGET_DEVICE)/chromium_prebuilt.mk
101endif
102
Alberto970ceb8342015-01-02 14:43:15 +0100103$(call inherit-product-if-exists, vendor/extra/product.mk)