moz.build (839B)
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 with Files("**"): 8 BUG_COMPONENT = ("Core", "Internationalization") 9 10 EXPORTS.mozilla.dom += [ 11 "TextDecoder.h", 12 "TextDecoderStream.h", 13 "TextEncoder.h", 14 "TextEncoderStream.h", 15 ] 16 17 UNIFIED_SOURCES += [ 18 "TextDecoder.cpp", 19 "TextDecoderStream.cpp", 20 "TextEncoder.cpp", 21 "TextEncoderStream.cpp", 22 ] 23 24 FINAL_LIBRARY = "xul" 25 LOCAL_INCLUDES += [ 26 "/intl/locale", 27 ] 28 29 MOCHITEST_MANIFESTS += [ 30 "test/mochitest.toml", 31 ] 32 MOCHITEST_CHROME_MANIFESTS += ["test/chrome.toml"] 33 XPCSHELL_TESTS_MANIFESTS += ["test/unit/xpcshell.toml"]