core_minimal.mk revision 0df5e7270b2b63f3e5955db9b34971a8d9094107
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    bu \
34    com.android.location.provider \
35    com.android.location.provider.xml \
36    com.android.media.remotedisplay \
37    com.android.media.remotedisplay.xml \
38    drmserver \
39    ethernet-service \
40    framework-res \
41    idmap \
42    installd \
43    ims-common \
44    ip \
45    ip-up-vpn \
46    ip6tables \
47    iptables \
48    keystore \
49    keystore.default \
50    libbcc \
51    libOpenMAXAL \
52    libOpenSLES \
53    libdownmix \
54    libdrmframework \
55    libdrmframework_jni \
56    libfilterfw \
57    libkeystore \
58    libsqlite_jni \
59    libwilhelm \
60    logd \
61    make_ext4fs \
62    e2fsck \
63    resize2fs \
64    mms-common \
65    screencap \
66    sensorservice \
67    telephony-common \
68    uiautomator \
69    uncrypt \
70    voip-common \
71    webview \
72    wifi-service
73
74PRODUCT_COPY_FILES += \
75    frameworks/native/data/etc/android.software.webview.xml:system/etc/permissions/android.software.webview.xml
76
77# The order of PRODUCT_BOOT_JARS matters.
78PRODUCT_BOOT_JARS := \
79    core \
80    conscrypt \
81    okhttp \
82    core-junit \
83    bouncycastle \
84    ext \
85    framework \
86    framework2 \
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