OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |