36 lines
1.3 KiB
Makefile
36 lines
1.3 KiB
Makefile
#
|
|
# Copyright (C) 2021 Google Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
# TODO: Remove this once the APEX is included in base system.
|
|
|
|
# To include the APEX in your build, insert this in your device.mk:
|
|
# $(call inherit-product, packages/modules/Virtualization/apex/product_packages.mk)
|
|
|
|
PRODUCT_PACKAGES += \
|
|
com.android.compos \
|
|
com.android.virt \
|
|
|
|
# TODO(b/207336449): Figure out how to get these off /system
|
|
PRODUCT_ARTIFACT_PATH_REQUIREMENT_ALLOWED_LIST := \
|
|
system/framework/oat/%@service-compos.jar@classes.odex \
|
|
system/framework/oat/%@service-compos.jar@classes.vdex \
|
|
|
|
PRODUCT_APEX_SYSTEM_SERVER_JARS := com.android.compos:service-compos
|
|
|
|
PRODUCT_SYSTEM_EXT_PROPERTIES := ro.config.isolated_compilation_enabled=true
|
|
|
|
PRODUCT_SYSTEM_FSVERITY_GENERATE_METADATA := true
|