mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Auto merge of #22196 - paulrouget:ndkfilter, r=Manishearth
Add only one architecture per apk Fix #22192 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22196) <!-- Reviewable:end -->
This commit is contained in:
commit
0ab2c3f8a3
1 changed files with 24 additions and 0 deletions
|
@ -65,28 +65,52 @@ android {
|
||||||
// Custom build types
|
// Custom build types
|
||||||
armDebug {
|
armDebug {
|
||||||
initWith(debug)
|
initWith(debug)
|
||||||
|
ndk {
|
||||||
|
abiFilters getNDKAbi('arm')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
armRelease {
|
armRelease {
|
||||||
initWith(release)
|
initWith(release)
|
||||||
|
ndk {
|
||||||
|
abiFilters getNDKAbi('arm')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
armv7Debug {
|
armv7Debug {
|
||||||
initWith(debug)
|
initWith(debug)
|
||||||
|
ndk {
|
||||||
|
abiFilters getNDKAbi('armv7')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
armv7Release {
|
armv7Release {
|
||||||
initWith(release)
|
initWith(release)
|
||||||
|
ndk {
|
||||||
|
abiFilters getNDKAbi('armv7')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
arm64Debug {
|
arm64Debug {
|
||||||
initWith(debug)
|
initWith(debug)
|
||||||
|
ndk {
|
||||||
|
abiFilters getNDKAbi('arm64')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
arm64Release {
|
arm64Release {
|
||||||
initWith(release)
|
initWith(release)
|
||||||
|
ndk {
|
||||||
|
abiFilters getNDKAbi('arm64')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
x86Debug {
|
x86Debug {
|
||||||
initWith(debug)
|
initWith(debug)
|
||||||
|
ndk {
|
||||||
|
abiFilters getNDKAbi('x86')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
x86Release {
|
x86Release {
|
||||||
initWith(release)
|
initWith(release)
|
||||||
|
ndk {
|
||||||
|
abiFilters getNDKAbi('x86')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue