19
19
// Generated by the Swift generator plugin for the protocol buffer compiler.
20
20
// Source: FirebaseSDKs.proto
21
21
//
22
- // For information on using the generated types, please see the documenation :
22
+ // For information on using the generated types, please see the documentation :
23
23
// https://github.com/apple/swift-protobuf/
24
24
25
25
import Foundation
@@ -35,7 +35,6 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP
35
35
typealias Version = _2
36
36
}
37
37
38
- /// A list of all Firebase SDKs.
39
38
public struct ZipBuilder_FirebaseSDKs {
40
39
// SwiftProtobuf.Message conformance is added in an extension below. See the
41
40
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
@@ -48,96 +47,113 @@ public struct ZipBuilder_FirebaseSDKs {
48
47
public init ( ) { }
49
48
}
50
49
51
- /// Represents a single SDK that should be released.
52
50
public struct ZipBuilder_SDK {
53
51
// SwiftProtobuf.Message conformance is added in an extension below. See the
54
52
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
55
53
// methods supported on all messages.
56
54
57
- /// SDK name
55
+ /// SDK name.
58
56
public var name : String {
59
57
get { return _storage. _name}
60
58
set { _uniqueStorage ( ) . _name = newValue}
61
59
}
62
60
63
- /// MPM name for the blueprint. For internal use only.
64
- public var mpmName : String {
61
+ /// MPM name for the blueprint.
62
+ var mpmName : String {
65
63
get { return _storage. _mpmName}
66
64
set { _uniqueStorage ( ) . _mpmName = newValue}
67
65
}
68
66
69
- /// Public version
67
+ /// Public version.
70
68
public var publicVersion : String {
71
69
get { return _storage. _publicVersion}
72
70
set { _uniqueStorage ( ) . _publicVersion = newValue}
73
71
}
74
72
75
- /// List of MPM patterns to build
76
- public var mpmPattern : [ String ] {
73
+ /// List of MPM patterns to build.
74
+ var mpmPattern : [ String ] {
77
75
get { return _storage. _mpmPattern}
78
76
set { _uniqueStorage ( ) . _mpmPattern = newValue}
79
77
}
80
78
81
- /// An optional list of additional build flags. For internal use only .
82
- public var buildFlags : ZipBuilder_BuildFlag {
83
- get { return _storage. _buildFlags ?? ZipBuilder_BuildFlag ( ) }
84
- set { _uniqueStorage ( ) . _buildFlags = newValue}
79
+ /// An optional list of additional blaze flags.
80
+ var blazeFlags : ZipBuilder_BlazeFlag {
81
+ get { return _storage. _blazeFlags ?? ZipBuilder_BlazeFlag ( ) }
82
+ set { _uniqueStorage ( ) . _blazeFlags = newValue}
85
83
}
86
- /// Returns true if `buildFlags ` has been explicitly set.
87
- public var hasBuildFlags : Bool { return _storage. _buildFlags != nil }
88
- /// Clears the value of `buildFlags `. Subsequent reads from it will return its default value.
89
- public mutating func clearBuildFlags ( ) { _uniqueStorage ( ) . _buildFlags = nil }
84
+ /// Returns true if `blazeFlags ` has been explicitly set.
85
+ var hasBlazeFlags : Bool { return _storage. _blazeFlags != nil }
86
+ /// Clears the value of `blazeFlags `. Subsequent reads from it will return its default value.
87
+ mutating func clearBlazeFlags ( ) { _uniqueStorage ( ) . _blazeFlags = nil }
90
88
91
- /// List of MPM patterns to build (optional nightly override). For internal use only.
92
- public var nightlyMpmPattern : [ String ] {
89
+ /// List of MPM patterns to build (optional nightly override).
90
+ var nightlyMpmPattern : [ String ] {
93
91
get { return _storage. _nightlyMpmPattern}
94
92
set { _uniqueStorage ( ) . _nightlyMpmPattern = newValue}
95
93
}
96
94
97
- /// Whether or not the SDK is built from open-source. For internal use only.
98
- public var openSource : Bool {
95
+ /// Whether or not the SDK is built from open-source.
96
+ var openSource : Bool {
99
97
get { return _storage. _openSource}
100
98
set { _uniqueStorage ( ) . _openSource = newValue}
101
99
}
102
100
103
101
/// Whether or not to strip the i386 architecture from the build.
104
- public var stripI386 : Bool {
102
+ var stripI386 : Bool {
105
103
get { return _storage. _stripI386}
106
104
set { _uniqueStorage ( ) . _stripI386 = newValue}
107
105
}
108
106
109
- /// List of build targets. For internal use only .
110
- public var buildTarget : [ String ] {
107
+ /// List of build targets to build the SDK - used for collecting licenses .
108
+ var buildTarget : [ String ] {
111
109
get { return _storage. _buildTarget}
112
110
set { _uniqueStorage ( ) . _buildTarget = newValue}
113
111
}
114
112
115
113
/// Whether or not to strip both the i386 and armv7 architectures from the
116
- /// build. All SDKs that use this flag are built internally so this should be ignored.
117
- public var strip32Bits : Bool {
114
+ /// build.
115
+ var strip32Bits : Bool {
118
116
get { return _storage. _strip32Bits}
119
117
set { _uniqueStorage ( ) . _strip32Bits = newValue}
120
118
}
121
119
120
+ /// Specifies if the provided pod should be fetched from public repo.
121
+ /// Mainly use for clash testing.
122
+ var publicPod : Bool {
123
+ get { return _storage. _publicPod}
124
+ set { _uniqueStorage ( ) . _publicPod = newValue}
125
+ }
126
+
127
+ /// Whether or not to use the builtin flags.
128
+ var noBuiltinFlags : Bool {
129
+ get { return _storage. _noBuiltinFlags}
130
+ set { _uniqueStorage ( ) . _noBuiltinFlags = newValue}
131
+ }
132
+
133
+ /// Whether or not to build arm64e slice.
134
+ var buildArm64E : Bool {
135
+ get { return _storage. _buildArm64E}
136
+ set { _uniqueStorage ( ) . _buildArm64E = newValue}
137
+ }
138
+
122
139
public var unknownFields = SwiftProtobuf . UnknownStorage ( )
123
140
124
141
public init ( ) { }
125
142
126
143
fileprivate var _storage = _StorageClass. defaultInstance
127
144
}
128
145
129
- /// Any extra build flags needed to build the SDK. For internal use only.
130
- public struct ZipBuilder_BuildFlag {
146
+ struct ZipBuilder_BlazeFlag {
131
147
// SwiftProtobuf.Message conformance is added in an extension below. See the
132
148
// `Message` and `Message+*Additions` files in the SwiftProtobuf library for
133
149
// methods supported on all messages.
134
150
135
- /// An additional build flag needed to build the SDK
136
- public var flag : [ String ] = [ ]
151
+ /// An additional blaze flag needed to build the SDK
152
+ var flag : [ String ] = [ ]
137
153
138
- public var unknownFields = SwiftProtobuf . UnknownStorage ( )
154
+ var unknownFields = SwiftProtobuf . UnknownStorage ( )
139
155
140
- public init ( ) { }
156
+ init ( ) { }
141
157
}
142
158
143
159
// MARK: - Code below here is support for the SwiftProtobuf runtime.
@@ -150,7 +166,7 @@ extension ZipBuilder_FirebaseSDKs: SwiftProtobuf.Message, SwiftProtobuf._Message
150
166
1 : . same( proto: " sdk " ) ,
151
167
]
152
168
153
- public mutating func decodeMessage< D: SwiftProtobuf . Decoder > ( decoder: inout D ) throws {
169
+ mutating public func decodeMessage< D: SwiftProtobuf . Decoder > ( decoder: inout D ) throws {
154
170
while let fieldNumber = try decoder. nextFieldNumber ( ) {
155
171
switch fieldNumber {
156
172
case 1 : try decoder. decodeRepeatedMessageField ( value: & self . sdk)
@@ -180,25 +196,31 @@ extension ZipBuilder_SDK: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
180
196
2 : . standard( proto: " mpm_name " ) ,
181
197
3 : . standard( proto: " public_version " ) ,
182
198
4 : . standard( proto: " mpm_pattern " ) ,
183
- 5 : . standard( proto: " build_flags " ) ,
199
+ 5 : . standard( proto: " blaze_flags " ) ,
184
200
6 : . standard( proto: " nightly_mpm_pattern " ) ,
185
201
7 : . standard( proto: " open_source " ) ,
186
202
8 : . standard( proto: " strip_i386 " ) ,
187
203
9 : . standard( proto: " build_target " ) ,
188
204
10 : . standard( proto: " strip_32bits " ) ,
205
+ 11 : . standard( proto: " public_pod " ) ,
206
+ 12 : . standard( proto: " no_builtin_flags " ) ,
207
+ 13 : . standard( proto: " build_arm64e " ) ,
189
208
]
190
209
191
210
fileprivate class _StorageClass {
192
211
var _name : String = String ( )
193
212
var _mpmName : String = String ( )
194
213
var _publicVersion : String = String ( )
195
214
var _mpmPattern : [ String ] = [ ]
196
- var _buildFlags : ZipBuilder_BuildFlag ? = nil
215
+ var _blazeFlags : ZipBuilder_BlazeFlag ? = nil
197
216
var _nightlyMpmPattern : [ String ] = [ ]
198
217
var _openSource : Bool = false
199
218
var _stripI386 : Bool = false
200
219
var _buildTarget : [ String ] = [ ]
201
220
var _strip32Bits : Bool = false
221
+ var _publicPod : Bool = false
222
+ var _noBuiltinFlags : Bool = false
223
+ var _buildArm64E : Bool = false
202
224
203
225
static let defaultInstance = _StorageClass ( )
204
226
@@ -209,12 +231,15 @@ extension ZipBuilder_SDK: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
209
231
_mpmName = source. _mpmName
210
232
_publicVersion = source. _publicVersion
211
233
_mpmPattern = source. _mpmPattern
212
- _buildFlags = source. _buildFlags
234
+ _blazeFlags = source. _blazeFlags
213
235
_nightlyMpmPattern = source. _nightlyMpmPattern
214
236
_openSource = source. _openSource
215
237
_stripI386 = source. _stripI386
216
238
_buildTarget = source. _buildTarget
217
239
_strip32Bits = source. _strip32Bits
240
+ _publicPod = source. _publicPod
241
+ _noBuiltinFlags = source. _noBuiltinFlags
242
+ _buildArm64E = source. _buildArm64E
218
243
}
219
244
}
220
245
@@ -225,7 +250,7 @@ extension ZipBuilder_SDK: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
225
250
return _storage
226
251
}
227
252
228
- public mutating func decodeMessage< D: SwiftProtobuf . Decoder > ( decoder: inout D ) throws {
253
+ mutating public func decodeMessage< D: SwiftProtobuf . Decoder > ( decoder: inout D ) throws {
229
254
_ = _uniqueStorage ( )
230
255
try withExtendedLifetime ( _storage) { ( _storage: _StorageClass ) in
231
256
while let fieldNumber = try decoder. nextFieldNumber ( ) {
@@ -234,12 +259,15 @@ extension ZipBuilder_SDK: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
234
259
case 2 : try decoder. decodeSingularStringField ( value: & _storage. _mpmName)
235
260
case 3 : try decoder. decodeSingularStringField ( value: & _storage. _publicVersion)
236
261
case 4 : try decoder. decodeRepeatedStringField ( value: & _storage. _mpmPattern)
237
- case 5 : try decoder. decodeSingularMessageField ( value: & _storage. _buildFlags )
262
+ case 5 : try decoder. decodeSingularMessageField ( value: & _storage. _blazeFlags )
238
263
case 6 : try decoder. decodeRepeatedStringField ( value: & _storage. _nightlyMpmPattern)
239
264
case 7 : try decoder. decodeSingularBoolField ( value: & _storage. _openSource)
240
265
case 8 : try decoder. decodeSingularBoolField ( value: & _storage. _stripI386)
241
266
case 9 : try decoder. decodeRepeatedStringField ( value: & _storage. _buildTarget)
242
267
case 10 : try decoder. decodeSingularBoolField ( value: & _storage. _strip32Bits)
268
+ case 11 : try decoder. decodeSingularBoolField ( value: & _storage. _publicPod)
269
+ case 12 : try decoder. decodeSingularBoolField ( value: & _storage. _noBuiltinFlags)
270
+ case 13 : try decoder. decodeSingularBoolField ( value: & _storage. _buildArm64E)
243
271
default : break
244
272
}
245
273
}
@@ -260,7 +288,7 @@ extension ZipBuilder_SDK: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
260
288
if !_storage. _mpmPattern. isEmpty {
261
289
try visitor. visitRepeatedStringField ( value: _storage. _mpmPattern, fieldNumber: 4 )
262
290
}
263
- if let v = _storage. _buildFlags {
291
+ if let v = _storage. _blazeFlags {
264
292
try visitor. visitSingularMessageField ( value: v, fieldNumber: 5 )
265
293
}
266
294
if !_storage. _nightlyMpmPattern. isEmpty {
@@ -278,6 +306,15 @@ extension ZipBuilder_SDK: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
278
306
if _storage. _strip32Bits != false {
279
307
try visitor. visitSingularBoolField ( value: _storage. _strip32Bits, fieldNumber: 10 )
280
308
}
309
+ if _storage. _publicPod != false {
310
+ try visitor. visitSingularBoolField ( value: _storage. _publicPod, fieldNumber: 11 )
311
+ }
312
+ if _storage. _noBuiltinFlags != false {
313
+ try visitor. visitSingularBoolField ( value: _storage. _noBuiltinFlags, fieldNumber: 12 )
314
+ }
315
+ if _storage. _buildArm64E != false {
316
+ try visitor. visitSingularBoolField ( value: _storage. _buildArm64E, fieldNumber: 13 )
317
+ }
281
318
}
282
319
try unknownFields. traverse ( visitor: & visitor)
283
320
}
@@ -291,12 +328,15 @@ extension ZipBuilder_SDK: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
291
328
if _storage. _mpmName != rhs_storage. _mpmName { return false }
292
329
if _storage. _publicVersion != rhs_storage. _publicVersion { return false }
293
330
if _storage. _mpmPattern != rhs_storage. _mpmPattern { return false }
294
- if _storage. _buildFlags != rhs_storage. _buildFlags { return false }
331
+ if _storage. _blazeFlags != rhs_storage. _blazeFlags { return false }
295
332
if _storage. _nightlyMpmPattern != rhs_storage. _nightlyMpmPattern { return false }
296
333
if _storage. _openSource != rhs_storage. _openSource { return false }
297
334
if _storage. _stripI386 != rhs_storage. _stripI386 { return false }
298
335
if _storage. _buildTarget != rhs_storage. _buildTarget { return false }
299
336
if _storage. _strip32Bits != rhs_storage. _strip32Bits { return false }
337
+ if _storage. _publicPod != rhs_storage. _publicPod { return false }
338
+ if _storage. _noBuiltinFlags != rhs_storage. _noBuiltinFlags { return false }
339
+ if _storage. _buildArm64E != rhs_storage. _buildArm64E { return false }
300
340
return true
301
341
}
302
342
if !storagesAreEqual { return false }
@@ -306,13 +346,13 @@ extension ZipBuilder_SDK: SwiftProtobuf.Message, SwiftProtobuf._MessageImplement
306
346
}
307
347
}
308
348
309
- extension ZipBuilder_BuildFlag : SwiftProtobuf . Message , SwiftProtobuf . _MessageImplementationBase , SwiftProtobuf . _ProtoNameProviding {
310
- public static let protoMessageName : String = _protobuf_package + " .BuildFlag "
311
- public static let _protobuf_nameMap : SwiftProtobuf . _NameMap = [
349
+ extension ZipBuilder_BlazeFlag : SwiftProtobuf . Message , SwiftProtobuf . _MessageImplementationBase , SwiftProtobuf . _ProtoNameProviding {
350
+ static let protoMessageName : String = _protobuf_package + " .BlazeFlag "
351
+ static let _protobuf_nameMap : SwiftProtobuf . _NameMap = [
312
352
1 : . same( proto: " flag " ) ,
313
353
]
314
354
315
- public mutating func decodeMessage< D: SwiftProtobuf . Decoder > ( decoder: inout D ) throws {
355
+ mutating func decodeMessage< D: SwiftProtobuf . Decoder > ( decoder: inout D ) throws {
316
356
while let fieldNumber = try decoder. nextFieldNumber ( ) {
317
357
switch fieldNumber {
318
358
case 1 : try decoder. decodeRepeatedStringField ( value: & self . flag)
@@ -321,14 +361,14 @@ extension ZipBuilder_BuildFlag: SwiftProtobuf.Message, SwiftProtobuf._MessageImp
321
361
}
322
362
}
323
363
324
- public func traverse< V: SwiftProtobuf . Visitor > ( visitor: inout V ) throws {
364
+ func traverse< V: SwiftProtobuf . Visitor > ( visitor: inout V ) throws {
325
365
if !self . flag. isEmpty {
326
366
try visitor. visitRepeatedStringField ( value: self . flag, fieldNumber: 1 )
327
367
}
328
368
try unknownFields. traverse ( visitor: & visitor)
329
369
}
330
370
331
- public static func == ( lhs: ZipBuilder_BuildFlag , rhs: ZipBuilder_BuildFlag ) -> Bool {
371
+ static func == ( lhs: ZipBuilder_BlazeFlag , rhs: ZipBuilder_BlazeFlag ) -> Bool {
332
372
if lhs. flag != rhs. flag { return false }
333
373
if lhs. unknownFields != rhs. unknownFields { return false }
334
374
return true
0 commit comments