7ebc342b86
Similar to vendor/manifest.xml on device, this file lists all HALs defined in the framework (and hence go to the system image). IServiceManager / IMemory / etc. getService should consult this file (via VINTF object under /system/libvintf) to return the HAL in the correct transport mode. Bug: 34772739 Create system/manifest.xml Bug: 35219444 Need interface + instance entry Test: compiles and manually confirm that system/manifest.xml exist. Change-Id: I5b3c79b068841e47062cbab6f72d70555801a21d
122 lines
2.8 KiB
Makefile
122 lines
2.8 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 \
|
|
android.hidl.allocator@1.0-service \
|
|
android.hidl.memory@1.0-impl \
|
|
atrace \
|
|
bootanimation \
|
|
bootstat \
|
|
cmd \
|
|
crash_dump \
|
|
debuggerd\
|
|
dumpstate \
|
|
dumpsys \
|
|
fastboot \
|
|
gralloc.default \
|
|
grep \
|
|
gzip \
|
|
healthd \
|
|
hwservicemanager \
|
|
init \
|
|
init.environ.rc \
|
|
init.rc \
|
|
libEGL \
|
|
libETC1 \
|
|
libFFTEm \
|
|
libGLESv1_CM \
|
|
libGLESv2 \
|
|
libGLESv3 \
|
|
libbinder \
|
|
libc \
|
|
libc_malloc_debug \
|
|
libcutils \
|
|
libdl \
|
|
libgui \
|
|
libhardware \
|
|
libhardware_legacy \
|
|
libjpeg \
|
|
liblog \
|
|
libm \
|
|
libpixelflinger \
|
|
libpower \
|
|
libsigchain \
|
|
libstdc++ \
|
|
libsurfaceflinger \
|
|
libsurfaceflinger_ddmconnection \
|
|
libsysutils \
|
|
libui \
|
|
libutils \
|
|
linker \
|
|
lmkd \
|
|
logcat \
|
|
logwrapper \
|
|
lshal \
|
|
mkshrc \
|
|
reboot \
|
|
recovery \
|
|
service \
|
|
servicemanager \
|
|
sh \
|
|
surfaceflinger \
|
|
tombstoned \
|
|
toolbox \
|
|
toybox \
|
|
tzdatacheck \
|
|
|
|
# SELinux packages
|
|
PRODUCT_PACKAGES += \
|
|
file_contexts.bin \
|
|
nonplat_file_contexts \
|
|
nonplat_mac_permissions.xml \
|
|
nonplat_property_contexts \
|
|
nonplat_seapp_contexts \
|
|
nonplat_service_contexts \
|
|
plat_file_contexts \
|
|
plat_mac_permissions.xml \
|
|
plat_property_contexts \
|
|
plat_seapp_contexts \
|
|
plat_service_contexts \
|
|
selinux_version \
|
|
sepolicy
|
|
|
|
# AID Generation for
|
|
# <pwd.h> and <grp.h>
|
|
PRODUCT_PACKAGES += \
|
|
passwd \
|
|
group \
|
|
fs_config_files \
|
|
fs_config_dirs
|
|
|
|
# Ensure that this property is always defined so that bionic_systrace.cpp
|
|
# can rely on it being initially set by init.
|
|
PRODUCT_DEFAULT_PROPERTY_OVERRIDES += \
|
|
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
|
|
|
|
# Framework Manifest
|
|
PRODUCT_COPY_FILES += \
|
|
system/libhidl/sintf.xml:system/manifest.xml
|