full.mk revision 7d9876b05ed45b96c1a715ff9e32293a8ea68bd0
1#
2# Copyright (C) 2009 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# This is a build configuration for a full-featured build of the
18# Open-Source part of the tree. It's geared toward a US-centric
19# build of the emulator, but all those aspects can be overridden
20# in inherited configurations.
21
22PRODUCT_PACKAGES := \
23    VoiceDialer
24
25# Additional settings used in all AOSP builds
26PRODUCT_PROPERTY_OVERRIDES := \
27    keyguard.no_require_sim=true \
28    ro.com.android.dateformat=MM-dd-yyyy \
29    ro.com.android.dataroaming=true \
30    ro.ril.hsxpa=1 \
31    ro.ril.gprsclass=10
32
33PRODUCT_COPY_FILES := \
34    development/data/etc/apns-conf.xml:system/etc/apns-conf.xml \
35    development/data/etc/vold.conf:system/etc/vold.conf
36
37# Pick up some sounds - stick with the short list to save space
38# on smaller devices.
39$(call inherit-product, frameworks/base/data/sounds/OriginalAudio.mk)
40
41# Get a list of languages. We use the small list to save space
42# on smaller devices.
43$(call inherit-product, build/target/product/languages_small.mk)
44
45$(call inherit-product, build/target/product/generic.mk)
46
47# Overrides
48PRODUCT_NAME := full
49PRODUCT_BRAND := generic
50PRODUCT_DEVICE := generic
51PRODUCT_MODEL := Full Android
52
53