| 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 20 matching lines...) Expand all Loading... |
| 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 } |
| OLD | NEW |