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

Side by Side Diff: adblockbrowser-cfg.py

Issue 29328574: Issue 3118 - Update adblockbrowser-build to include custom build steps (Closed)
Patch Set: Created Sept. 24, 2015, 12:13 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 | dependencies » ('j') | 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 23 matching lines...) Expand all
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", 41 "package-en-US",
42 "restore-objdir", 42 "restore-objdir",
43 "add-locales", 43 "add-locales",
44 "abb-transform-locales",
44 "package-multi", 45 "package-multi",
45 "summary", 46 "summary",
46 ], 47 ],
47 } 48 }
OLDNEW
« no previous file with comments | « no previous file | dependencies » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld