21204e4921
This reverts commit f03a265786
.
Change-Id: I3ca0e2f9e3938b49919a8530b393ba3dba4f118c
123 lines
2.9 KiB
Makefile
123 lines
2.9 KiB
Makefile
#
|
|
# Copyright (C) 2009 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
# This is a build configuration for a very minimal build of the
|
|
# Open-Source part of the tree.
|
|
|
|
PRODUCT_PACKAGES += \
|
|
adb \
|
|
adbd \
|
|
usbd \
|
|
android.hardware.configstore@1.0-service \
|
|
android.hidl.allocator@1.0-service \
|
|
android.hidl.memory@1.0-impl \
|
|
android.hidl.memory@1.0-impl.vendor \
|
|
atrace \
|
|
blank_screen \
|
|
bootanimation \
|
|
bootstat \
|
|
charger \
|
|
cmd \
|
|
crash_dump \
|
|
debuggerd\
|
|
dumpstate \
|
|
dumpsys \
|
|
fastboot \
|
|
gralloc.default \
|
|
healthd \
|
|
hwservicemanager \
|
|
init \
|
|
init.environ.rc \
|
|
init.rc \
|
|
libEGL \
|
|
libETC1 \
|
|
libFFTEm \
|
|
libGLESv1_CM \
|
|
libGLESv2 \
|
|
libGLESv3 \
|
|
libbinder \
|
|
libc \
|
|
libc_malloc_debug \
|
|
libc_malloc_hooks \
|
|
libcutils \
|
|
libdl \
|
|
libgui \
|
|
libhardware \
|
|
libhardware_legacy \
|
|
libjpeg \
|
|
liblog \
|
|
libm \
|
|
libpixelflinger \
|
|
libpower \
|
|
libsigchain \
|
|
libstdc++ \
|
|
libsurfaceflinger \
|
|
libsurfaceflinger_ddmconnection \
|
|
libsysutils \
|
|
libui \
|
|
libutils \
|
|
linker \
|
|
lmkd \
|
|
logcat \
|
|
logwrapper \
|
|
lshal \
|
|
recovery \
|
|
service \
|
|
servicemanager \
|
|
shell_and_utilities \
|
|
storaged \
|
|
surfaceflinger \
|
|
thermalserviced \
|
|
tombstoned \
|
|
tzdatacheck \
|
|
vndservice \
|
|
vndservicemanager \
|
|
|
|
# VINTF data
|
|
PRODUCT_PACKAGES += \
|
|
device_compatibility_matrix.xml \
|
|
device_manifest.xml \
|
|
framework_manifest.xml \
|
|
framework_compatibility_matrix.xml \
|
|
|
|
# SELinux packages are added as dependencies of the selinux_policy
|
|
# phony package.
|
|
PRODUCT_PACKAGES += \
|
|
selinux_policy \
|
|
|
|
# AID Generation for
|
|
# <pwd.h> and <grp.h>
|
|
PRODUCT_PACKAGES += \
|
|
passwd \
|
|
group \
|
|
fs_config_files \
|
|
fs_config_dirs
|
|
|
|
# If there are product-specific adb keys defined, install them on debuggable
|
|
# builds.
|
|
PRODUCT_PACKAGES_DEBUG += \
|
|
adb_keys
|
|
|
|
# Ensure that this property is always defined so that bionic_systrace.cpp
|
|
# can rely on it being initially set by init.
|
|
PRODUCT_SYSTEM_DEFAULT_PROPERTIES += \
|
|
debug.atrace.tags.enableflags=0
|
|
|
|
PRODUCT_COPY_FILES += \
|
|
system/core/rootdir/init.usb.rc:root/init.usb.rc \
|
|
system/core/rootdir/init.usb.configfs.rc:root/init.usb.configfs.rc \
|
|
system/core/rootdir/ueventd.rc:root/ueventd.rc \
|
|
system/core/rootdir/etc/hosts:system/etc/hosts
|