| 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 14 matching lines...) Expand all  Loading... | 
| 25     "log_name": "multilocale", | 25     "log_name": "multilocale", | 
| 26     "objdir": OBJDIR, | 26     "objdir": OBJDIR, | 
| 27     "locales_file": "%s/%s/locales/maemo-locales" % (BUILD_DIR, ANDROID_DIR), | 27     "locales_file": "%s/%s/locales/maemo-locales" % (BUILD_DIR, ANDROID_DIR), | 
| 28     "locales_dir": "%s/locales" % ANDROID_DIR, | 28     "locales_dir": "%s/locales" % ANDROID_DIR, | 
| 29     "ignore_locales": ["en-US", "en-ZA", "multi"], | 29     "ignore_locales": ["en-US", "en-ZA", "multi"], | 
| 30     "l10n_repos": [{ | 30     "l10n_repos": [{ | 
| 31         "repo": "https://hg.mozilla.org/build/compare-locales", | 31         "repo": "https://hg.mozilla.org/build/compare-locales", | 
| 32         "tag": "RELEASE_AUTOMATION" | 32         "tag": "RELEASE_AUTOMATION" | 
| 33     }], | 33     }], | 
| 34     "hg_l10n_base": "https://hg.mozilla.org/%s" % L10N_REPO_PATH, | 34     "hg_l10n_base": "https://hg.mozilla.org/%s" % L10N_REPO_PATH, | 
| 35     "hg_l10n_tag": "FENNEC_44_0_2_RELEASE", | 35     "hg_l10n_tag": "FENNEC_45_0_2_RELEASE", | 
| 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-locales", | 44         "abb-transform-locales", | 
| 45         "package-multi", | 45         "package-multi", | 
| 46         "summary", | 46         "summary", | 
| 47     ], | 47     ], | 
| 48 } | 48 } | 
| OLD | NEW | 
|---|