Closes #22321: Add temporary protoc version workaround for M1 Macbooks

upstream-sync
Matt Tighe 3 years ago committed by mergify[bot]
parent dc15ee2415
commit 5003c14e7e

@ -605,8 +605,14 @@ dependencies {
}
protobuf {
// Mac M1 workaround until we can bump the version. Dependent on A-S.
// See https://github.com/mozilla-mobile/fenix/issues/22321
protoc {
artifact = Deps.protobuf_compiler
if (osdetector.os == "osx") {
artifact = "${Deps.protobuf_compiler}:osx-x86_64"
} else {
artifact = Deps.protobuf_compiler
}
}
// Generates the java Protobuf-lite code for the Protobufs in this project. See

Loading…
Cancel
Save