core_minimal.mk revision 9a043962ca8c62e47e1bc9d68d564213a006ba3a
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    libbcc \
55    libOpenMAXAL \
56    libOpenSLES \
57    libdownmix \
58    libdrmframework \
59    libdrmframework_jni \
60    libfilterfw \
61    libkeystore \
62    libsqlite_jni \
63    libwilhelm \
64    logd \
65    make_ext4fs \
66    e2fsck \
67    resize2fs \
68    mms-common \
69    screencap \
70    sensorservice \
71    telephony-common \
72    uiautomator \
73    uncrypt \
74    voip-common \
75    webview \
76    wifi-service
77
78PRODUCT_COPY_FILES += \
79    frameworks/native/data/etc/android.software.webview.xml:system/etc/permissions/android.software.webview.xml
80
81# The order of PRODUCT_BOOT_JARS matters.
82PRODUCT_BOOT_JARS := \
83    core-libart \
84    conscrypt \
85    okhttp \
86    core-junit \
87    bouncycastle \
88    ext \
89    framework \
90    telephony-common \
91    voip-common \
92    ims-common \
93    mms-common \
94    android.policy \
95    apache-xml \
96
97# The order of PRODUCT_SYSTEM_SERVER_JARS matters.
98PRODUCT_SYSTEM_SERVER_JARS := \
99    services \
100    ethernet-service \
101    wifi-service
102
103PRODUCT_RUNTIMES := runtime_libart_default
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/base.mk)
111