moz.build (767B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 if CONFIG["MOZ_BUILD_APP"] != "memory": 8 FINAL_LIBRARY = "mozglue" 9 10 with Files('**'): 11 BUG_COMPONENT = ('Core', 'mozglue') 12 13 LOCAL_INCLUDES += [ 14 "/mfbt/double-conversion", 15 ] 16 17 EXPORTS.fmt += [ 18 'include/fmt/args.h', 19 'include/fmt/base.h', 20 'include/fmt/chrono.h', 21 'include/fmt/color.h', 22 'include/fmt/format-inl.h', 23 'include/fmt/format.h', 24 'include/fmt/ostream.h', 25 'include/fmt/ranges.h', 26 'include/fmt/xchar.h', 27 ] 28 29 UNIFIED_SOURCES += [ 30 'src/format.cc', 31 ] 32