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