aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/android/java/com/google/devtools/build/android/proto
diff options
context:
space:
mode:
authorGravatar corysmith <corysmith@google.com>2018-07-31 08:30:55 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-31 08:32:58 -0700
commit8fe0f45852a620a078013310989396caed273342 (patch)
treef94622e2420cd7ebc3aa21c4e7a57915c6642a57 /src/tools/android/java/com/google/devtools/build/android/proto
parent66a20633e89497c062b1e10cf7a02a996ab9a855 (diff)
Add apk converted to proto and all attributes from CompiledResources to ResourcesZip.
Add new proto format for tool attributes stored in the AndroidDataXml for storing them in the resources.zip. RELNOTES:None PiperOrigin-RevId: 206765679
Diffstat (limited to 'src/tools/android/java/com/google/devtools/build/android/proto')
-rw-r--r--src/tools/android/java/com/google/devtools/build/android/proto/serialize_format.proto8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tools/android/java/com/google/devtools/build/android/proto/serialize_format.proto b/src/tools/android/java/com/google/devtools/build/android/proto/serialize_format.proto
index b87d5fee83..a7f913057d 100644
--- a/src/tools/android/java/com/google/devtools/build/android/proto/serialize_format.proto
+++ b/src/tools/android/java/com/google/devtools/build/android/proto/serialize_format.proto
@@ -87,3 +87,11 @@ message DataValueXml {
map<string, string> attribute = 8;
map<string, string> namespace = 9;
}
+
+// Container for serialized attributes.
+message ToolAttributes {
+ message ToolAttributeValues {
+ repeated string values = 1;
+ }
+ map<string, ToolAttributeValues> attributes = 1;
+}