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

Side by Side Diff: adblockbrowser-cfg.py

Issue 29328578: Issue 3119 - Remove unnecessary build steps from adblockbrowser-build (Closed)
Patch Set: Created Sept. 24, 2015, 12:24 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 import os 1 import os
2 # The name of the directory we'll pull our source into. 2 # The name of the directory we'll pull our source into.
3 BUILD_DIR = "adblockbrowser" 3 BUILD_DIR = "adblockbrowser"
4 # This is everything that comes after https://hg.mozilla.org/ 4 # This is everything that comes after https://hg.mozilla.org/
5 # e.g. "releases/mozilla-aurora" 5 # e.g. "releases/mozilla-aurora"
6 REPO_PATH = "mozilla-central" 6 REPO_PATH = "mozilla-central"
7 # This is where the l10n repos are (everything after https://hg.mozilla.org/) 7 # This is where the l10n repos are (everything after https://hg.mozilla.org/)
8 # for mozilla-central, that's "l10n-central". 8 # for mozilla-central, that's "l10n-central".
9 # For mozilla-aurora, that's "releases/l10n/mozilla-aurora" 9 # For mozilla-aurora, that's "releases/l10n/mozilla-aurora"
10 L10N_REPO_PATH = "releases/l10n/mozilla-release" 10 L10N_REPO_PATH = "releases/l10n/mozilla-release"
(...skipping 20 matching lines...) Expand all
31 }], 31 }],
32 "hg_l10n_base": "https://hg.mozilla.org/%s" % L10N_REPO_PATH, 32 "hg_l10n_base": "https://hg.mozilla.org/%s" % L10N_REPO_PATH,
33 "hg_l10n_tag": "FENNEC_40_0_RELEASE", 33 "hg_l10n_tag": "FENNEC_40_0_RELEASE",
34 "l10n_dir": "l10n", 34 "l10n_dir": "l10n",
35 "merge_locales": True, 35 "merge_locales": True,
36 "mozilla_dir": BUILD_DIR, 36 "mozilla_dir": BUILD_DIR,
37 "mozconfig": MOZCONFIG, 37 "mozconfig": MOZCONFIG,
38 "default_actions": [ 38 "default_actions": [
39 "pull-locale-source", 39 "pull-locale-source",
40 "build", 40 "build",
41 "package-en-US",
42 "restore-objdir",
43 "add-locales", 41 "add-locales",
44 "package-multi", 42 "package-multi",
45 "summary", 43 "summary",
46 ], 44 ],
47 } 45 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld