moz.build 784 B

1234567891011121314151617181920212223242526272829303132333435
  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. TEST_DIRS += ['tests']
  6. EXPORTS.mozilla.dom += [
  7. 'MessageChannel.h',
  8. 'MessagePort.h',
  9. 'MessagePortChild.h',
  10. 'MessagePortParent.h',
  11. ]
  12. SOURCES += [
  13. 'MessageChannel.cpp',
  14. 'MessagePort.cpp',
  15. 'MessagePortChild.cpp',
  16. 'MessagePortParent.cpp',
  17. 'MessagePortService.cpp',
  18. 'SharedMessagePortMessage.cpp',
  19. ]
  20. IPDL_SOURCES += ['PMessagePort.ipdl']
  21. LOCAL_INCLUDES += [
  22. '../base',
  23. '../events',
  24. '../workers',
  25. ]
  26. include('/ipc/chromium/chromium-config.mozbuild')
  27. FINAL_LIBRARY = 'xul'