moz.build 744 B

12345678910111213141516171819202122232425262728293031323334353637
  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. DIRS += [
  6. 'base',
  7. 'cookie',
  8. 'dns',
  9. 'socket',
  10. 'mime',
  11. 'streamconv',
  12. 'cache',
  13. 'cache2',
  14. 'protocol',
  15. 'system',
  16. 'ipc',
  17. 'standalone',
  18. ]
  19. if CONFIG['MOZ_SRTP']:
  20. DIRS += ['srtp/src']
  21. if CONFIG['MOZ_SCTP']:
  22. DIRS += ['sctp/src', 'sctp/datachannel']
  23. if CONFIG['NECKO_WIFI']:
  24. DIRS += ['wifi']
  25. DIRS += ['locales']
  26. DIRS += ['build']
  27. TEST_DIRS += ['test']
  28. CONFIGURE_DEFINE_FILES += ['necko-config.h']
  29. EXPORTS += ['!necko-config.h']