5aa8db53a2
Replicate aosp_blueline's configuration, which is shared with other pixels, and explicitly repurpose this to be a generic AOSP mainline device. Clean up associated whitelist entries in gsi for the apps I'm moving to /product in the same topic. Bug: 129077057 Test: boot aosp_blueline Test: browse ringtones Change-Id: I8424cb23923987d2176369f93b479fc827fbabef
37 lines
1.5 KiB
Makefile
37 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2019 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 makefile is intended to serve as a base for completely AOSP based
|
|
# mainline devices, It contain the mainline system partition and sensible
|
|
# defaults for the product and vendor partition.
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/mainline_system.mk)
|
|
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/handheld_vendor.mk)
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/handheld_product.mk)
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/telephony_vendor.mk)
|
|
$(call inherit-product, $(SRC_TARGET_DIR)/product/telephony_product.mk)
|
|
|
|
$(call inherit-product, frameworks/base/data/sounds/AllAudio.mk)
|
|
|
|
PRODUCT_PROPERTY_OVERRIDES += \
|
|
ro.config.ringtone=Ring_Synth_04.ogg \
|
|
ro.com.android.dataroaming=true \
|
|
|
|
PRODUCT_PACKAGES += \
|
|
PhotoTable \
|
|
WallpaperPicker \
|
|
|
|
PRODUCT_COPY_FILES += device/sample/etc/apns-full-conf.xml:$(TARGET_COPY_OUT_PRODUCT)/etc/apns-conf.xml
|