core_minimal.mk revision 3a260d68605bf4f3423bed560d49f8b27c35050d
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    keystore \
54    keystore.default \
55    ld.mc \
56    libbcc \
57    libOpenMAXAL \
58    libOpenSLES \
59    libdownmix \
60    libdrmframework \
61    libdrmframework_jni \
62    libfilterfw \
63    libkeystore \
64    libsqlite_jni \
65    libwilhelm \
66    logd \
67    make_ext4fs \
68    e2fsck \
69    resize2fs \
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    apache-xml \
95    org.apache.http.legacy
96
97# The order of PRODUCT_SYSTEM_SERVER_JARS matters.
98PRODUCT_SYSTEM_SERVER_JARS := \
99    services \
100    ethernet-service \
101    wifi-service
102
103PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
104    ro.zygote=zygote32
105PRODUCT_COPY_FILES += \
106    system/core/rootdir/init.zygote32.rc:root/init.zygote32.rc
107
108$(call inherit-product, $(SRC_TARGET_DIR)/product/runtime_libart.mk)
109$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
110