Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54f4f2fc authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 8456972 from 7587df14 to tm-release

Change-Id: I92b864452663f64d9672471d24640b515545c623
parents 30407104 7587df14
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -19,6 +19,7 @@ bootstrap_go_package {
        "soong-shared",
        "soong-shared",
        "soong-starlark-format",
        "soong-starlark-format",
        "soong-ui-metrics_proto",
        "soong-ui-metrics_proto",
        "soong-android-allowlists",


        "golang-protobuf-proto",
        "golang-protobuf-proto",
        "golang-protobuf-encoding-prototext",
        "golang-protobuf-encoding-prototext",
+25 −0
Original line number Original line Diff line number Diff line
// Copyright 2022 Google Inc. All rights reserved.
//
// 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.

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

bootstrap_go_package {
    name: "soong-android-allowlists",
    pkgPath: "android/soong/android/allowlists",
    srcs: [
        "allowlists.go",
    ],
}
+414 −0

File added.

Preview size limit exceeded, changes collapsed.

+38 −36
Original line number Original line Diff line number Diff line
@@ -325,6 +325,7 @@ func getFinalCodenamesMap(config Config) map[string]int {
			"R":        30,
			"R":        30,
			"S":        31,
			"S":        31,
			"S-V2":     32,
			"S-V2":     32,
			"Tiramisu": 33,
		}
		}


		// TODO: Differentiate "current" and "future".
		// TODO: Differentiate "current" and "future".
@@ -369,6 +370,7 @@ func GetApiLevelsMap(config Config) map[string]int {
			"R":        30,
			"R":        30,
			"S":        31,
			"S":        31,
			"S-V2":     32,
			"S-V2":     32,
			"Tiramisu": 33,
		}
		}
		for i, codename := range config.PlatformVersionActiveCodenames() {
		for i, codename := range config.PlatformVersionActiveCodenames() {
			apiLevelsMap[codename] = previewAPILevelBase + i
			apiLevelsMap[codename] = previewAPILevelBase + i
+180 −459

File changed.

Preview size limit exceeded, changes collapsed.

Loading