1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
"""
Build flag values for release config next.
"""
# Copyright (C) 2023 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.
#
# Build system flag configuration for `lunch <product>-next-<variant>` builds
# ^^^^
# See go/build-system-flags
#
load("//build/make/core/release_config.scl", "value")
# Flags should be alphabetical by flag name to reduce merge conflifcts
values = [
# keep-sorted start numeric=yes
value("RELEASE_ACONFIG_FLAG_DEFAULT_PERMISSION", "READ_ONLY"),
value("RELEASE_ACONFIG_VALUE_SETS", "aconfig_value_set-aosp-ap2a"),
value("RELEASE_AIDL_USE_UNFROZEN", False),
value("RELEASE_BOARD_API_LEVEL", "202404"),
value("RELEASE_BUILD_FLAGS_IN_PROTOBUF", False),
value("RELEASE_DEPRECATE_VNDK", True),
value("RELEASE_PLATFORM_SDK_EXTENSION_VERSION", "11"),
value("RELEASE_PLATFORM_SDK_VERSION", "34"),
value("RELEASE_PLATFORM_SECURITY_PATCH", "2024-09-05"),
value("RELEASE_PLATFORM_VERSION", "UP1A"),
value("RELEASE_PLATFORM_VERSION_ALL_CODENAMES", "REL"),
value("RELEASE_PLATFORM_VERSION_ALL_PREVIEW_CODENAMES", "REL,VanillaIceCream"),
value("RELEASE_PLATFORM_VERSION_CODENAME", "REL"),
value("RELEASE_PLATFORM_VERSION_LAST_STABLE", "14"),
value("RELEASE_PLATFORM_VNDK_VERSION", "35"),
# keep-sorted end
]
# Flags should be alphabetical by flag name to reduce merge conflifcts
|