Bug 1427285 - Fix typo in build.gradle to correctly reflect crash reporter state in BuildConfig. r? draft
authorJan Henning <jh+bugzilla@buttercookie.de>
Thu, 28 Dec 2017 17:15:05 +0100
changeset 714709 bc757d6f3547c9c9df49e1d482d8a35fb016d5ca
parent 714707 75b1490ad5a974b9584b8228b32e82e82cafffea
child 744665 e14194428d4e9d08579e153423c31d8191b31f94
push id94008
push usermozilla@buttercookie.de
push dateThu, 28 Dec 2017 16:19:38 +0000
bugs1427285
milestone59.0a1
Bug 1427285 - Fix typo in build.gradle to correctly reflect crash reporter state in BuildConfig. r? MozReview-Commit-ID: DSypUp5s5O9
mobile/android/geckoview/build.gradle
--- a/mobile/android/geckoview/build.gradle
+++ b/mobile/android/geckoview/build.gradle
@@ -89,17 +89,17 @@ android {
 
         // See this wiki page for more details about channel specific build defines:
         // https://wiki.mozilla.org/Platform/Channel-specific_build_defines
         // This makes no sense for GeckoView and should be removed as soon as possible.
         buildConfigField 'boolean', 'RELEASE_OR_BETA', mozconfig.substs.RELEASE_OR_BETA ? 'true' : 'false';
         // This makes no sense for GeckoView and should be removed as soon as possible.
         buildConfigField 'boolean', 'NIGHTLY_BUILD', mozconfig.substs.NIGHTLY_BUILD ? 'true' : 'false';
         // This makes no sense for GeckoView and should be removed as soon as possible.
-        buildConfigField 'boolean', 'MOZ_CRASHREPORTER', mozconfig.substs.MOZ_CRASH_REPORTER ? 'true' : 'false';
+        buildConfigField 'boolean', 'MOZ_CRASHREPORTER', mozconfig.substs.MOZ_CRASHREPORTER ? 'true' : 'false';
 
         // Official corresponds, roughly, to whether this build is performed on
         // Mozilla's continuous integration infrastructure. You should disable
         // developer-only functionality when this flag is set.
         // This makes no sense for GeckoView and should be removed as soon as possible.
         buildConfigField 'boolean', 'MOZILLA_OFFICIAL', mozconfig.substs.MOZILLA_OFFICIAL ? 'true' : 'false';
     }