moz.build 812 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. with Files('**'):
  6. BUG_COMPONENT = ('Core', 'Layout')
  7. DIRS += [
  8. 'style',
  9. 'base',
  10. 'generic',
  11. 'forms',
  12. 'tables',
  13. 'svg',
  14. 'xul',
  15. 'ipc',
  16. 'mathml',
  17. 'inspector',
  18. 'tools/recording',
  19. 'reftests',
  20. ]
  21. IPDL_SOURCES = [
  22. 'printing/ipc/PRemotePrintJob.ipdl',
  23. ]
  24. if CONFIG['NS_PRINTING']:
  25. DIRS += ['printing']
  26. TEST_DIRS += [
  27. 'tools/reftest',
  28. ]
  29. DIRS += ['build', 'media']
  30. if CONFIG['MOZ_DEBUG']:
  31. TEST_DIRS += ['tools/layout-debug']
  32. CRASHTEST_MANIFESTS += ['../testing/crashtest/crashtests.list']