diff options
author | Matt A. Tobin <email@mattatobin.com> | 2021-11-29 17:34:58 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2021-11-29 17:34:58 -0500 |
commit | 1525bc70f70afed5f6d7d70e4dcc1054a06b1d8c (patch) | |
tree | 0098cdd74a80fb95f1ecd1d49504176196373767 /modules | |
parent | 9c1d44310116bc9965b4b44720280d20b7364b01 (diff) | |
download | aura-central-1525bc70f70afed5f6d7d70e4dcc1054a06b1d8c.tar.gz |
No Issue - Remove some unused build vars
Set them to false in AppConstants.jsm for possible bc
Diffstat (limited to 'modules')
-rw-r--r-- | modules/AppConstants.jsm | 31 |
1 files changed, 4 insertions, 27 deletions
diff --git a/modules/AppConstants.jsm b/modules/AppConstants.jsm index 7cfa8980c..cb6d776ee 100644 --- a/modules/AppConstants.jsm +++ b/modules/AppConstants.jsm @@ -60,33 +60,10 @@ this.AppConstants = Object.freeze({ false, #endif - MOZ_SERVICES_HEALTHREPORT: -#ifdef MOZ_SERVICES_HEALTHREPORT - true, -#else - false, -#endif - - MOZ_DATA_REPORTING: -#ifdef MOZ_DATA_REPORTING - true, -#else - false, -#endif - - MOZ_TELEMETRY_REPORTING: -#ifdef MOZ_TELEMETRY_REPORTING - true, -#else - false, -#endif - - MOZ_TELEMETRY_ON_BY_DEFAULT: -#ifdef MOZ_TELEMETRY_ON_BY_DEFAULT - true, -#else - false, -#endif + MOZ_SERVICES_HEALTHREPORT: false, + MOZ_DATA_REPORTING: false, + MOZ_TELEMETRY_REPORTING: false, + MOZ_TELEMETRY_ON_BY_DEFAULT: false, MOZ_UPDATER: #ifdef MOZ_UPDATER |