Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: adblockbrowser-cfg.py

Issue 29365816: Issue 4677 - Add support for x86 builds in adblockbrowser-build (Closed)
Patch Set: Adding missing MOZILLA_OFFICIAL config Created Dec. 28, 2016, 6:08 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « .hgignore ('k') | build.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: adblockbrowser-cfg.py
===================================================================
--- a/adblockbrowser-cfg.py
+++ b/adblockbrowser-cfg.py
@@ -4,17 +4,19 @@ BUILD_DIR = "adblockbrowser"
# This is everything that comes after https://hg.mozilla.org/
# e.g. "releases/mozilla-aurora"
REPO_PATH = "mozilla-central"
# This is where the l10n repos are (everything after https://hg.mozilla.org/)
# for mozilla-central, that's "l10n-central".
# For mozilla-aurora, that's "releases/l10n/mozilla-aurora"
L10N_REPO_PATH = "releases/l10n/mozilla-release"
# Currently this is assumed to be a subdirectory of your build dir
-OBJDIR = "obj-arm-linux-androideabi"
+if not "OBJDIR" in os.environ:
+ raise "No objdir specified - please set OBJDIR"
+OBJDIR = os.environ.get("OBJDIR")
# Set this to mobile/xul for XUL Fennec
ANDROID_DIR = "mobile/android"
# Absolute path to your mozconfig.
# By default it looks at "./mozconfig"
if not "MOZCONFIG" in os.environ:
raise "No mozconfig specified - please set MOZCONFIG"
MOZCONFIG = os.environ.get("MOZCONFIG")
« no previous file with comments | « .hgignore ('k') | build.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld