core_minimal.mk revision 0735c5f08cd6dd617965c57ca5607b2c26c7ca6e
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    DownloadProviderUi \
29    HTMLViewer \
30    MediaProvider \
31    PackageInstaller \
32    SettingsProvider \
33    Shell \
34    bu \
35    com.android.location.provider \
36    com.android.location.provider.xml \
37    drmserver \
38    framework-res \
39    installd \
40    ip \
41    ip-up-vpn \
42    ip6tables \
43    iptables \
44    keystore \
45    keystore.default \
46    libOpenMAXAL \
47    libOpenSLES \
48    libdownmix \
49    libdrmframework \
50    libdrmframework_jni \
51    libfilterfw \
52    libsqlite_jni \
53    libwilhelm \
54    make_ext4fs \
55    screencap \
56    sensorservice \
57    uiautomator
58
59PRODUCT_BOOT_JARS := core:conscrypt:okhttp:core-junit:bouncycastle:ext:framework:framework2:android.policy:services:apache-xml:webviewchromium
60
61PRODUCT_RUNTIMES := runtime_libdvm_default
62ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
63    PRODUCT_RUNTIMES += runtime_libart
64endif
65
66$(call inherit-product, $(SRC_TARGET_DIR)/product/base.mk)
67