moz.build 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. MOCHITEST_CHROME_MANIFESTS += ['tests/chrome/chrome.ini']
  6. XPIDL_SOURCES += [
  7. 'nsIXULBuilderListener.idl',
  8. 'nsIXULSortService.idl',
  9. 'nsIXULTemplateBuilder.idl',
  10. 'nsIXULTemplateQueryProcessor.idl',
  11. 'nsIXULTemplateResult.idl',
  12. 'nsIXULTemplateRuleFilter.idl',
  13. ]
  14. XPIDL_MODULE = 'xultmpl'
  15. SOURCES += [
  16. 'nsContentSupportMap.cpp',
  17. 'nsContentTestNode.cpp',
  18. 'nsInstantiationNode.cpp',
  19. 'nsRDFBinding.cpp',
  20. 'nsRDFConInstanceTestNode.cpp',
  21. 'nsRDFConMemberTestNode.cpp',
  22. 'nsRDFPropertyTestNode.cpp',
  23. 'nsRDFQuery.cpp',
  24. 'nsResourceSet.cpp',
  25. 'nsRuleNetwork.cpp',
  26. 'nsTemplateMatch.cpp',
  27. 'nsTemplateRule.cpp',
  28. 'nsTreeRows.cpp',
  29. 'nsXMLBinding.cpp',
  30. 'nsXULContentBuilder.cpp',
  31. 'nsXULContentUtils.cpp',
  32. 'nsXULSortService.cpp',
  33. 'nsXULTemplateBuilder.cpp',
  34. 'nsXULTemplateQueryProcessorRDF.cpp',
  35. 'nsXULTemplateQueryProcessorStorage.cpp',
  36. 'nsXULTemplateQueryProcessorXML.cpp',
  37. 'nsXULTemplateResultRDF.cpp',
  38. 'nsXULTemplateResultSetRDF.cpp',
  39. 'nsXULTemplateResultStorage.cpp',
  40. 'nsXULTemplateResultXML.cpp',
  41. 'nsXULTreeBuilder.cpp',
  42. ]
  43. LOCAL_INCLUDES += [
  44. '/dom/base',
  45. '/dom/xul',
  46. '/layout/xul/tree/',
  47. ]
  48. FINAL_LIBRARY = 'xul'
  49. if CONFIG['GNU_CXX']:
  50. CXXFLAGS += ['-Wno-error=shadow']