aboutsummaryrefslogtreecommitdiff
path: root/android/container_gob_enc.go
diff options
context:
space:
mode:
Diffstat (limited to 'android/container_gob_enc.go')
-rw-r--r--android/container_gob_enc.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/android/container_gob_enc.go b/android/container_gob_enc.go
new file mode 100644
index 000000000..359b472b5
--- /dev/null
+++ b/android/container_gob_enc.go
@@ -0,0 +1,38 @@
+// Code generated by go run gob_gen.go; DO NOT EDIT.
+
+package android
+
+import (
+ "bytes"
+ "github.com/google/blueprint/gobtools"
+)
+
+func init() {
+ unstableInfoGobRegId = gobtools.RegisterType(func() gobtools.CustomDec { return new(unstableInfo) })
+}
+
+func (r unstableInfo) Encode(buf *bytes.Buffer) error {
+ var err error
+
+ if err = gobtools.EncodeSimple(buf, r.ContainsPlatformPrivateApis); err != nil {
+ return err
+ }
+ return err
+}
+
+func (r *unstableInfo) Decode(buf *bytes.Reader) error {
+ var err error
+
+ err = gobtools.DecodeSimple[bool](buf, &r.ContainsPlatformPrivateApis)
+ if err != nil {
+ return err
+ }
+
+ return err
+}
+
+var unstableInfoGobRegId int16
+
+func (r unstableInfo) GetTypeId() int16 {
+ return unstableInfoGobRegId
+}