core_minimal.mk revision 58408f645a30883dd2003b8de3b6c0e5d2ec006c
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    StatementService \
34    bcc \
35    bu \
36    com.android.future.usb.accessory \
37    com.android.location.provider \
38    com.android.location.provider.xml \
39    com.android.media.remotedisplay \
40    com.android.media.remotedisplay.xml \
41    com.android.mediadrm.signer \
42    com.android.mediadrm.signer.xml \
43    drmserver \
44    ethernet-service \
45    framework-res \
46    idmap \
47    installd \
48    ims-common \
49    ip \
50    ip-up-vpn \
51    ip6tables \
52    iptables \
53    gatekeeperd \
54    keystore \
55    keystore.default \
56    ld.mc \
57    libbcc \
58    libOpenMAXAL \
59    libOpenSLES \
60    libdownmix \
61    libdrmframework \
62    libdrmframework_jni \
63    libfilterfw \
64    libkeystore \
65    libgatekeeper \
66    libwilhelm \
67    logd \
68    make_ext4fs \
69    e2fsck \
70    resize2fs \
71    screencap \
72    sensorservice \
73    telephony-common \
74    uiautomator \
75    uncrypt \
76    voip-common \
77    webview \
78    wifi-service
79
80PRODUCT_COPY_FILES += \
81    frameworks/native/data/etc/android.software.webview.xml:system/etc/permissions/android.software.webview.xml
82
83# The order of PRODUCT_BOOT_JARS matters.
84PRODUCT_BOOT_JARS := \
85    core-oj \
86    core-libart \
87    conscrypt \
88    okhttp \
89    core-junit \
90    bouncycastle \
91    ext \
92    framework \
93    telephony-common \
94    voip-common \
95    ims-common \
96    apache-xml \
97    org.apache.http.legacy.boot
98
99# The order of PRODUCT_SYSTEM_SERVER_JARS matters.
100PRODUCT_SYSTEM_SERVER_JARS := \
101    services \
102    ethernet-service \
103    wifi-service
104
105# Adoptable external storage supports both ext4 and f2fs
106PRODUCT_PACKAGES += \
107    e2fsck \
108    make_ext4fs \
109    fsck.f2fs \
110    make_f2fs \
111
112PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
113    ro.zygote=zygote32
114PRODUCT_COPY_FILES += \
115    system/core/rootdir/init.zygote32.rc:root/init.zygote32.rc
116
117$(call inherit-product, $(SRC_TARGET_DIR)/product/runtime_libart.mk)
118$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
119