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

Commit 48d11dde authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "release_config: Initial implementation" into main

parents 1edffe1d 1eccbf24
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

bootstrap_go_package {
    name: "release-config",
    pkgPath: "android/soong/cmd/release_config",
    deps: [
        "golang-protobuf-encoding-prototext",
        "golang-protobuf-reflect-protoreflect",
        "golang-protobuf-runtime-protoimpl",
        "soong-cmd-release-config-proto",
    ],
    srcs: [
        "main.go",
    ],
}

bootstrap_go_package {
    name: "soong-cmd-release-config-proto",
    pkgPath: "android/soong/cmd/release_config/release_config_proto",
    deps: [
        "golang-protobuf-reflect-protoreflect",
        "golang-protobuf-runtime-protoimpl",
    ],
    srcs: [
        "release_config_proto/build_flags_out.pb.go",
        "release_config_proto/build_flags_src.pb.go",
    ],
}
+691 −0

File added.

Preview size limit exceeded, changes collapsed.

+30 −0
Original line number Diff line number Diff line
// Copyright 2024 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-release_config_proto",
    pkgPath: "android/soong/release_config/release_config_proto",
    deps: [
        "golang-protobuf-reflect-protoreflect",
        "golang-protobuf-runtime-protoimpl",
    ],
    srcs: [
        "build_flags_src.pb.go",
        "build_flags_out.pb.go",
    ],
}
+486 −0

File added.

Preview size limit exceeded, changes collapsed.

+86 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading