blob: c02c84bff2122de59a146ba73a7e89b5adb5d7a4 [file] [log] [blame]
keunyoungebb5c6b2013-06-26 09:57:13 -07001# Copyright (C) 2013 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Stuart Scott1340d2d2013-08-01 14:31:13 -070015PRODUCT_BRAND := mini
16PRODUCT_DEVICE := mini
17PRODUCT_NAME := mini
18
19# add all configurations
20PRODUCT_AAPT_CONFIG := normal ldpi mdpi hdpi xhdpi xxhdpi
21PRODUCT_AAPT_PREF_CONFIG := hdpi
22
23# en_US only
24PRODUCT_LOCALES := en_US
25
26PRODUCT_PACKAGES += \
27 Bluetooth \
28 FusedLocation \
29 InputDevices \
30 Keyguard \
31 LatinIME \
32 Phone \
33 PrintSpooler \
34 Provision \
35 Settings \
36 SystemUI \
37 TestingCamera \
38 WAPPushManager \
39 apache-xml \
40 audio \
41 audio_policy.default \
42 audio.primary.default \
43 bouncycastle \
44 cacerts \
45 com.android.future.usb.accessory \
46 conscrypt \
47 core \
48 core-junit \
49 dalvikvm \
50 dexdeps \
51 dexdump \
52 dexlist \
53 dexopt \
54 dmtracedump \
55 dx \
56 ext \
57 hostapd \
58 hprof-conv \
59 libcrypto \
60 libdvm \
61 libexpat \
62 libicui18n \
63 libicuuc \
64 libjavacore \
65 libnativehelper \
66 librs_jni \
67 libssl \
68 libvideoeditor_core \
69 libvideoeditor_jni \
70 libvideoeditor_osal \
71 libvideoeditorplayer \
72 libvideoeditor_videofilters \
73 libz \
74 lint \
75 local_time.default \
76 network \
77 okhttp \
78 pand \
79 power.default \
80 sdptool \
81 wpa_supplicant.conf
82
83# This is not necessary for mini, but is for mini-emulator as it should
84# be included in platform.zip
85PRODUCT_PACKAGES += camera.goldfish.jpeg
86
87PRODUCT_COPY_FILES += \
88 frameworks/av/media/libeffects/data/audio_effects.conf:system/etc/audio_effects.conf \
89 frameworks/native/data/etc/android.hardware.location.gps.xml:system/etc/permissions/android.hardware.location.gps.xml \
90 frameworks/native/data/etc/android.hardware.sensor.barometer.xml:system/etc/permissions/android.hardware.sensor.barometer.xml \
91 frameworks/native/data/etc/android.hardware.sensor.gyroscope.xml:system/etc/permissions/android.hardware.sensor.gyroscope.xml \
92 frameworks/native/data/etc/android.hardware.sensor.light.xml:system/etc/permissions/android.hardware.sensor.light.xml \
93 frameworks/native/data/etc/android.hardware.usb.accessory.xml:system/etc/permissions/android.hardware.usb.accessory.xml \
94 frameworks/native/data/etc/handheld_core_hardware.xml:system/etc/permissions/handheld_core_hardware.xml \
95
96PRODUCT_PROPERTY_OVERRIDES += \
97 ro.carrier=unknown \
98 ro.com.android.dateformat=MM-dd-yyyy \
99 ro.config.ringtone=Ring_Synth_04.ogg \
100 ro.config.notification_sound=pixiedust.ogg
101
102$(call inherit-product, build/target/product/core_base.mk)
keunyoungebb5c6b2013-06-26 09:57:13 -0700103$(call inherit-product-if-exists, frameworks/webview/chromium/chromium.mk)
Stuart Scott1340d2d2013-08-01 14:31:13 -0700104$(call inherit-product-if-exists, frameworks/base/data/keyboards/keyboards.mk)
105$(call inherit-product-if-exists, frameworks/base/data/fonts/fonts.mk)
106$(call inherit-product-if-exists, frameworks/base/data/sounds/AudioPackage5.mk)
keunyoungebb5c6b2013-06-26 09:57:13 -0700107