1""" 2Build flag values for release config next. 3""" 4# Copyright (C) 2023 The Android Open Source Project 5# 6# Licensed under the Apache License, Version 2.0 (the "License"); 7# you may not use this file except in compliance with the License. 8# You may obtain a copy of the License at 9# 10# http://www.apache.org/licenses/LICENSE-2.0 11# 12# Unless required by applicable law or agreed to in writing, software 13# distributed under the License is distributed on an "AS IS" BASIS, 14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15# See the License for the specific language governing permissions and 16# limitations under the License. 17 18# 19# Build system flag configuration for `lunch <product>-next-<variant>` builds 20# ^^^^ 21# See go/build-system-flags 22# 23 24load("//build/make/core/release_config.scl", "value") 25 26# Flags should be alphabetical by flag name to reduce merge conflifcts 27values = [ 28 # keep-sorted start numeric=yes 29 value("RELEASE_ACONFIG_FLAG_DEFAULT_PERMISSION", "READ_ONLY"), 30 value("RELEASE_ACONFIG_VALUE_SETS", "aconfig_value_set-aosp-ap2a"), 31 value("RELEASE_AIDL_USE_UNFROZEN", False), 32 value("RELEASE_BOARD_API_LEVEL", "202404"), 33 value("RELEASE_BUILD_FLAGS_IN_PROTOBUF", False), 34 value("RELEASE_DEPRECATE_VNDK", True), 35 value("RELEASE_PLATFORM_SDK_EXTENSION_VERSION", "11"), 36 value("RELEASE_PLATFORM_SDK_VERSION", "34"), 37 value("RELEASE_PLATFORM_SECURITY_PATCH", "2024-09-05"), 38 value("RELEASE_PLATFORM_VERSION", "UP1A"), 39 value("RELEASE_PLATFORM_VERSION_ALL_CODENAMES", "REL"), 40 value("RELEASE_PLATFORM_VERSION_ALL_PREVIEW_CODENAMES", "REL,VanillaIceCream"), 41 value("RELEASE_PLATFORM_VERSION_CODENAME", "REL"), 42 value("RELEASE_PLATFORM_VERSION_LAST_STABLE", "14"), 43 value("RELEASE_PLATFORM_VNDK_VERSION", "35"), 44 # keep-sorted end 45] 46# Flags should be alphabetical by flag name to reduce merge conflifcts 47