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

Side by Side Diff: abb-build/adblockbrowser-cfg.py

Issue 29633555: Issue 6077 - Create script to modify the list of search engines dynamically (Closed)
Patch Set: Created Dec. 8, 2017, 9:19 a.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 | mobile/locales/searchplugins/ecosia.xml » ('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 = os.path.abspath('..') 3 BUILD_DIR = os.path.abspath('..')
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 }], 34 }],
35 "hg_l10n_base": "https://hg.mozilla.org/%s" % L10N_REPO_PATH, 35 "hg_l10n_base": "https://hg.mozilla.org/%s" % L10N_REPO_PATH,
36 "l10n_dir": "l10n", 36 "l10n_dir": "l10n",
37 "merge_locales": True, 37 "merge_locales": True,
38 "mozilla_dir": BUILD_DIR, 38 "mozilla_dir": BUILD_DIR,
39 "mozconfig": MOZCONFIG, 39 "mozconfig": MOZCONFIG,
40 "default_actions": [ 40 "default_actions": [
41 "pull-locale-source", 41 "pull-locale-source",
42 "build", 42 "build",
43 "add-locales", 43 "add-locales",
44 "abb-transform-search-engines-list",
44 "abb-transform-locales", 45 "abb-transform-locales",
45 "package-multi", 46 "package-multi",
46 "summary", 47 "summary",
47 ], 48 ],
48 } 49 }
OLDNEW
« no previous file with comments | « no previous file | mobile/locales/searchplugins/ecosia.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld