author | Benjamin Smedberg <benjamin@smedbergs.us> |
Wed, 20 Feb 2013 10:52:16 -0500 | |
changeset 122465 | 9111f2f9bd505f106a12af16ff958059e0adc085 |
parent 122464 | 3ac36d8b2489eedfee620d64e9a71fad0532d253 |
child 122466 | 8de609c5d3781a57134ab24196a7b0e6fb435d10 |
push id | 24342 |
push user | ryanvm@gmail.com |
push date | Thu, 21 Feb 2013 13:05:06 +0000 |
treeherder | mozilla-central@702d2814efbf [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | heycam |
bugs | 791244 |
milestone | 22.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -872,19 +872,22 @@ pref("browser.zoom.full", true); pref("browser.zoom.siteSpecific", true); // Whether or not to update background tabs to the current zoom level. pref("browser.zoom.updateBackgroundTabs", true); // The breakpad report server to link to in about:crashes pref("breakpad.reportURL", "http://crash-stats.mozilla.com/report/index/"); +#ifndef RELEASE_BUILD // Override submission of plugin hang reports to a different processing server +// for the smaller-volume nightly/aurora populations. pref("toolkit.crashreporter.pluginHangSubmitURL", "https://hang-reports.mozilla.org/submit"); +#endif // URL for "Learn More" for Crash Reporter pref("toolkit.crashreporter.infoURL", "http://www.mozilla.com/legal/privacy/firefox.html#crash-reporter"); // base URL for web-based support pages pref("app.support.baseURL", "http://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/");
--- a/config/rules.mk +++ b/config/rules.mk @@ -1202,35 +1202,35 @@ PREF_DIR = defaults/pref # If DIST_SUBDIR is defined it indicates that app and gre dirs are # different and that we are building app related resources. Hence, # PREF_DIR should point to the app prefs location. ifneq (,$(DIST_SUBDIR)$(XPI_NAME)$(LIBXUL_SDK)) PREF_DIR = defaults/preferences endif -ifneq ($(PREF_JS_EXPORTS),) # on win32, pref files need CRLF line endings... see bug 206029 ifeq (WINNT,$(OS_ARCH)) -PREF_PPFLAGS = --line-endings=crlf -endif - -ifndef NO_DIST_INSTALL -PREF_JS_EXPORTS_PATH := $(FINAL_TARGET)/$(PREF_DIR) -PREF_JS_EXPORTS_FLAGS := $(PREF_PPFLAGS) -PP_TARGETS += PREF_JS_EXPORTS -endif +PREF_PPFLAGS += --line-endings=crlf endif # Set a flag that can be used in pref files to disable features if # we are not building for Aurora or Nightly. ifeq (,$(findstring a,$(GRE_MILESTONE))) PREF_PPFLAGS += -DRELEASE_BUILD endif +ifneq ($(PREF_JS_EXPORTS),) +ifndef NO_DIST_INSTALL +PREF_JS_EXPORTS_PATH := $(FINAL_TARGET)/$(PREF_DIR) +PREF_JS_EXPORTS_FLAGS := $(PREF_PPFLAGS) +PP_TARGETS += PREF_JS_EXPORTS +endif +endif + ################################################################################ # Copy each element of AUTOCFG_JS_EXPORTS to $(FINAL_TARGET)/defaults/autoconfig ifneq ($(AUTOCFG_JS_EXPORTS),) ifndef NO_DIST_INSTALL AUTOCFG_JS_EXPORTS_FILES := $(AUTOCFG_JS_EXPORTS) AUTOCFG_JS_EXPORTS_DEST := $(FINAL_TARGET)/defaults/autoconfig AUTOCFG_JS_EXPORTS_TARGET := export
--- a/js/src/config/rules.mk +++ b/js/src/config/rules.mk @@ -1202,35 +1202,35 @@ PREF_DIR = defaults/pref # If DIST_SUBDIR is defined it indicates that app and gre dirs are # different and that we are building app related resources. Hence, # PREF_DIR should point to the app prefs location. ifneq (,$(DIST_SUBDIR)$(XPI_NAME)$(LIBXUL_SDK)) PREF_DIR = defaults/preferences endif -ifneq ($(PREF_JS_EXPORTS),) # on win32, pref files need CRLF line endings... see bug 206029 ifeq (WINNT,$(OS_ARCH)) -PREF_PPFLAGS = --line-endings=crlf -endif - -ifndef NO_DIST_INSTALL -PREF_JS_EXPORTS_PATH := $(FINAL_TARGET)/$(PREF_DIR) -PREF_JS_EXPORTS_FLAGS := $(PREF_PPFLAGS) -PP_TARGETS += PREF_JS_EXPORTS -endif +PREF_PPFLAGS += --line-endings=crlf endif # Set a flag that can be used in pref files to disable features if # we are not building for Aurora or Nightly. ifeq (,$(findstring a,$(GRE_MILESTONE))) PREF_PPFLAGS += -DRELEASE_BUILD endif +ifneq ($(PREF_JS_EXPORTS),) +ifndef NO_DIST_INSTALL +PREF_JS_EXPORTS_PATH := $(FINAL_TARGET)/$(PREF_DIR) +PREF_JS_EXPORTS_FLAGS := $(PREF_PPFLAGS) +PP_TARGETS += PREF_JS_EXPORTS +endif +endif + ################################################################################ # Copy each element of AUTOCFG_JS_EXPORTS to $(FINAL_TARGET)/defaults/autoconfig ifneq ($(AUTOCFG_JS_EXPORTS),) ifndef NO_DIST_INSTALL AUTOCFG_JS_EXPORTS_FILES := $(AUTOCFG_JS_EXPORTS) AUTOCFG_JS_EXPORTS_DEST := $(FINAL_TARGET)/defaults/autoconfig AUTOCFG_JS_EXPORTS_TARGET := export