summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2025-10-27 11:01:09 +0100
committerAlbin <albin@mullvad.net>2025-10-27 11:36:33 +0100
commit39fe804efbc42c65c4bab0e4ae27bc6799348012 (patch)
tree639f763971355199f87df26e1dc6263cebad36f4
parenta661d97f8f516476e71c4bc1ed293f33d9cd1c67 (diff)
downloadmullvadvpn-39fe804efbc42c65c4bab0e4ae27bc6799348012.tar.xz
mullvadvpn-39fe804efbc42c65c4bab0e4ae27bc6799348012.zip
Rename boringtun to gotatun in gradle
-rw-r--r--android/app/build.gradle.kts4
-rw-r--r--android/gradle.properties4
2 files changed, 4 insertions, 4 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts
index 3e3634c178..c163d78943 100644
--- a/android/app/build.gradle.kts
+++ b/android/app/build.gradle.kts
@@ -254,7 +254,7 @@ cargo {
val isReleaseBuild = isReleaseBuild()
val generateDebugSymbolsForReleaseBuilds =
getBooleanProperty("mullvad.app.build.cargo.generateDebugSymbolsForReleaseBuilds")
- val enableBoringTun = getBooleanProperty("mullvad.app.build.boringtun.enable")
+ val enableGotaTun = getBooleanProperty("mullvad.app.build.gotatun.enable")
val enableApiOverride = !isReleaseBuild || isDevBuild() || isAlphaBuild()
module = repoRootPath
libname = "mullvad-jni"
@@ -275,7 +275,7 @@ cargo {
if (enableApiOverride) {
add("api-override")
}
- if (enableBoringTun) {
+ if (enableGotaTun) {
add("boringtun")
}
}
diff --git a/android/gradle.properties b/android/gradle.properties
index 2f55e4e852..0807470a85 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -41,8 +41,8 @@ mullvad.app.build.keepDebugSymbols=false
# when debugging to the Rust native libs from Android Studio.
mullvad.app.build.replaceRustPathPrefix=true
-# Enable/Disable boringtun
-mullvad.app.build.boringtun.enable=false
+# Enable/Disable GotaTun
+mullvad.app.build.gotatun.enable=false
## E2E tests ##