core_minimal.mk revision 1e60fe58f0a66c4281a9c0050ce4d706d342bd22
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    framework-res \
40    idmap \
41    installd \
42    ip \
43    ip-up-vpn \
44    ip6tables \
45    iptables \
46    keystore \
47    keystore.default \
48    libOpenMAXAL \
49    libOpenSLES \
50    libdownmix \
51    libdrmframework \
52    libdrmframework_jni \
53    libfilterfw \
54    libsqlite_jni \
55    libwilhelm \
56    logd \
57    make_ext4fs \
58    screencap \
59    sensorservice \
60    uiautomator
61
62# The order of PRODUCT_BOOT_JARS matters.
63PRODUCT_BOOT_JARS := \
64    core \
65    conscrypt \
66    okhttp \
67    core-junit \
68    bouncycastle \
69    ext \
70    framework \
71    framework2 \
72    android.policy \
73    services \
74    apache-xml \
75    webviewchromium
76
77PRODUCT_RUNTIMES := runtime_libart_default
78
79PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
80    ro.zygote=zygote32
81PRODUCT_COPY_FILES += \
82    system/core/rootdir/init.zygote32.rc:root/init.zygote32.rc
83
84$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
85