core_minimal.mk revision 14c975b830aa764272bb76aa207b5dbf15fe422e
1#
2# Copyright (C) 2013 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# Base configuration for most consumer android devices.  Do not put
18# things that are specific to communication devices (phones, tables,
19# etc.) here -- for that, use core.mk.
20
21PRODUCT_BRAND := generic
22PRODUCT_DEVICE := generic
23PRODUCT_NAME := core
24
25PRODUCT_PACKAGES += \
26    BackupRestoreConfirmation \
27    DownloadProvider \
28    HTMLViewer \
29    MediaProvider \
30    PackageInstaller \
31    SettingsProvider \
32    Shell \
33    bcc \
34    bu \
35    com.android.location.provider \
36    com.android.location.provider.xml \
37    com.android.media.remotedisplay \
38    com.android.media.remotedisplay.xml \
39    drmserver \
40    ethernet-service \
41    framework-res \
42    idmap \
43    installd \
44    ims-common \
45    ip \
46    ip-up-vpn \
47    ip6tables \
48    iptables \
49    keystore \
50    keystore.default \
51    libbcc \
52    libOpenMAXAL \
53    libOpenSLES \
54    libdownmix \
55    libdrmframework \
56    libdrmframework_jni \
57    libfilterfw \
58    libkeystore \
59    libsqlite_jni \
60    libwilhelm \
61    logd \
62    make_ext4fs \
63    e2fsck \
64    resize2fs \
65    mms-common \
66    screencap \
67    sensorservice \
68    telephony-common \
69    uiautomator \
70    uncrypt \
71    voip-common \
72    webview \
73    wifi-service
74
75PRODUCT_COPY_FILES += \
76    frameworks/native/data/etc/android.software.webview.xml:system/etc/permissions/android.software.webview.xml
77
78# The order of PRODUCT_BOOT_JARS matters.
79PRODUCT_BOOT_JARS := \
80    core-libart \
81    conscrypt \
82    okhttp \
83    core-junit \
84    bouncycastle \
85    ext \
86    framework \
87    telephony-common \
88    voip-common \
89    ims-common \
90    mms-common \
91    android.policy \
92    services \
93    apache-xml \
94    ethernet-service \
95    webviewchromium \
96    wifi-service
97
98PRODUCT_RUNTIMES := runtime_libart_default
99
100PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
101    ro.zygote=zygote32
102PRODUCT_COPY_FILES += \
103    system/core/rootdir/init.zygote32.rc:root/init.zygote32.rc
104
105$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
106