moz.build 879 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. EXPORTS.mozilla.net += [
  6. 'ChannelEventQueue.h',
  7. 'NeckoChild.h',
  8. 'NeckoCommon.h',
  9. 'NeckoMessageUtils.h',
  10. 'NeckoParent.h',
  11. ]
  12. SOURCES += [
  13. 'ChannelEventQueue.cpp',
  14. 'NeckoChild.cpp',
  15. 'NeckoCommon.cpp',
  16. 'NeckoParent.cpp',
  17. ]
  18. IPDL_SOURCES = [
  19. 'NeckoChannelParams.ipdlh',
  20. 'PChannelDiverter.ipdl',
  21. 'PDataChannel.ipdl',
  22. 'PNecko.ipdl',
  23. 'PRtspChannel.ipdl',
  24. 'PRtspController.ipdl',
  25. ]
  26. include('/ipc/chromium/chromium-config.mozbuild')
  27. FINAL_LIBRARY = 'xul'
  28. LOCAL_INCLUDES += [
  29. '/caps',
  30. '/modules/libjar',
  31. '/netwerk/base',
  32. '/netwerk/protocol/http',
  33. ]