moz.build 741 B

12345678910111213141516171819202122232425262728293031
  1. # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
  2. # This Source Code Form is subject to the terms of the Mozilla Public
  3. # License, v. 2.0. If a copy of the MPL was not distributed with this
  4. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. XPIDL_SOURCES += [
  6. 'nsIXSLTProcessor.idl',
  7. 'nsIXSLTProcessorPrivate.idl',
  8. 'txIEXSLTRegExFunctions.idl',
  9. 'txIFunctionEvaluationContext.idl',
  10. 'txINodeSet.idl',
  11. 'txIXPathObject.idl',
  12. ]
  13. XPIDL_MODULE = 'content_xslt'
  14. EXPORTS += [
  15. 'nsIDocumentTransformer.h',
  16. ]
  17. DIRS += [
  18. 'base',
  19. 'xml',
  20. 'xpath',
  21. 'xslt',
  22. ]
  23. if CONFIG['ENABLE_TESTS']:
  24. JAR_MANIFESTS += ['tests/buster/jar.mn']
  25. MOCHITEST_MANIFESTS += ['tests/mochitest/mochitest.ini']