Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit b548288

Browse files
committed
feat(configuration): disable signing, telemetry reporting, and enable JS shell packaging for development builds
1 parent 4bdb666 commit b548288

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

gecko/config/moz.configure

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@
66

77
imply_option("MOZ_APP_VENDOR", "Ablaze")
88
imply_option("MOZ_APP_PROFILE", "Floorp")
9-
10-
11-
imply_option("MOZ_REQUIRE_SIGNING", 0)
12-
imply_option("MOZ_TELEMETRY_REPORTING", 0)
13-
imply_option("MOZ_PACKAGE_JSSHELL", 1)
14-
15-
169
imply_option("MOZ_APP_UA_NAME", "Firefox")
10+
11+
imply_option("MOZ_REQUIRE_SIGNING", False, reason="Disable signing requirement for development builds")
12+
imply_option("MOZ_TELEMETRY_REPORTING", False, reason="Disable telemetry reporting")
13+
imply_option("MOZ_PACKAGE_JSSHELL", True, reason="Enable JS shell packaging")

0 commit comments

Comments
 (0)