gecko-dev/browser/locales/generate_bookmarks.py
Nick Alexander 1589faf8b2 Bug 1464381 - Fix check for NIGHTLY_BUILD. r=gps
This was simply an oversight in the implementation of Bug 1464128.
What's happening is that `set_config` in `moz.configure` is not
unconditional, and NIGHTLY_BUILD is set in local builds and in B and N
builds in automation, so there was no test of the other case, which
promptly fails.  This re-uses a pattern successful in mobile/android
for setting defines.

MozReview-Commit-ID: 4zL4hVsqE3Q

--HG--
extra : rebase_source : f6033ed9be0afde7d1a5502bf69234247c95b8ba
2018-05-25 15:37:19 -07:00

46 lines
1.5 KiB
Python

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Generate bookmarks.html by interpolating the included (localized)
# `bookmarks.inc` file into the given (unlocalized) `bookmarks.html.in` input.
from __future__ import absolute_import, unicode_literals, print_function
import buildconfig
import sys
from mozbuild import preprocessor
def main(output, bookmarks_html_in, bookmarks_inc, locale=None):
if not locale:
raise ValueError('locale must be specified!')
CONFIG = buildconfig.substs
# Based on
# https://dxr.mozilla.org/l10n-central/search?q=path%3Abookmarks.inc+%23if&redirect=true,
# no localized input uses the preprocessor conditional #if (really,
# anything but #define), so it's safe to restrict the set of defines to
# what's used in mozilla-central directly.
defines = {}
defines['AB_CD'] = locale
if defines['AB_CD'] == 'ja-JP-mac':
defines['AB_CD'] = 'ja'
defines['BOOKMARKS_INCLUDE_PATH'] = bookmarks_inc
for var in ('NIGHTLY_BUILD',):
if var in CONFIG:
defines[var] = CONFIG[var]
includes = preprocessor.preprocess(includes=[bookmarks_html_in],
defines=defines,
output=output)
return includes
if __name__ == "__main__":
main(sys.argv[1:])