From 788b6080f54c6ca5093526023dfd9b12b90403f8 Mon Sep 17 00:00:00 2001 From: Googler Date: Wed, 9 Oct 2024 15:14:52 -0700 Subject: [PATCH] BEGIN_PUBLIC Move `android_deploy_info.proto` to rules_android END_PUBLIC PiperOrigin-RevId: 684187633 Change-Id: If64865d02d187fa106958b0b363e472d84ebb83f --- src/main/protobuf/BUILD | 5 +-- src/main/protobuf/android_deploy_info.proto | 48 --------------------- 2 files changed, 1 insertion(+), 52 deletions(-) delete mode 100644 src/main/protobuf/android_deploy_info.proto diff --git a/src/main/protobuf/BUILD b/src/main/protobuf/BUILD index c3e0b8befde8d5..860ffd6457cba9 100644 --- a/src/main/protobuf/BUILD +++ b/src/main/protobuf/BUILD @@ -417,10 +417,7 @@ java_library_srcs( filegroup( name = "srcs", - srcs = glob( - ["**"], - exclude = ["android_deploy_info.proto"], - ), + srcs = glob(["**"]), ) filegroup( diff --git a/src/main/protobuf/android_deploy_info.proto b/src/main/protobuf/android_deploy_info.proto deleted file mode 100644 index d491e5623acd17..00000000000000 --- a/src/main/protobuf/android_deploy_info.proto +++ /dev/null @@ -1,48 +0,0 @@ -// Copyright 2016 The Bazel Authors. 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. - -syntax = "proto3"; - -package blaze; - -// option java_api_version = 2; -option java_package = "com.google.devtools.build.lib.rules.android.deployinfo"; - -message Artifact { - // This path is relative to "bazel info execution_root" - string exec_root_path = 1; - - // Points to a globally valid URI whenever possible. - // See BuildEventStreamOptions.java - string canonical_uri = 2; -} - -// Information about how to deploy and launch the result of an android build -message AndroidDeployInfo { - // The merged manifest in the resource APK - Artifact merged_manifest = 1; - - // Merged manifests of dependencies - repeated Artifact additional_merged_manifests = 2; - - // If the build supports an external deploy, this will have the APKs. - // mobile-install does its own deployment, so this list will be empty - repeated Artifact apks_to_deploy = 3; - - // Unused - repeated Artifact data_to_deploy = 4; - - // Used by mobile-install - string manifest_package_name = 5; -}