moz.build (922B)
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 "DocumentL10n.h", 12 "DOMLocalization.h", 13 "L10nMutations.h", 14 "L10nOverlays.h", 15 ] 16 17 UNIFIED_SOURCES += [ 18 "DocumentL10n.cpp", 19 "DOMLocalization.cpp", 20 "L10nMutations.cpp", 21 "L10nOverlays.cpp", 22 ] 23 24 LOCAL_INCLUDES += [ 25 "/dom/base", 26 "/toolkit/components/jsoncpp/include", 27 ] 28 29 FINAL_LIBRARY = "xul" 30 31 MOCHITEST_MANIFESTS += ["tests/mochitest/mochitest.toml"] 32 MOCHITEST_CHROME_MANIFESTS += ["tests/mochitest/chrome.toml"] 33 BROWSER_CHROME_MANIFESTS += ["tests/mochitest/browser.toml"] 34 35 TEST_DIRS += ["tests/gtest"]