moz.build 761 B

123456789101112131415161718192021222324252627282930313233343536
  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. 'nsIWyciwygChannel.idl',
  7. ]
  8. XPIDL_MODULE = 'necko_wyciwyg'
  9. EXPORTS.mozilla.net += [
  10. 'WyciwygChannelChild.h',
  11. 'WyciwygChannelParent.h',
  12. ]
  13. SOURCES += [
  14. 'nsWyciwyg.cpp',
  15. 'nsWyciwygChannel.cpp',
  16. 'nsWyciwygProtocolHandler.cpp',
  17. 'WyciwygChannelChild.cpp',
  18. 'WyciwygChannelParent.cpp',
  19. ]
  20. IPDL_SOURCES += [
  21. 'PWyciwygChannel.ipdl',
  22. ]
  23. include('/ipc/chromium/chromium-config.mozbuild')
  24. FINAL_LIBRARY = 'xul'
  25. LOCAL_INCLUDES += [
  26. '/netwerk/base',
  27. ]