moz.build 953 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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.dom.filehandle += [
  6. 'ActorsChild.h',
  7. 'ActorsParent.h',
  8. 'SerializationHelpers.h',
  9. ]
  10. EXPORTS.mozilla.dom += [
  11. 'FileHandleBase.h',
  12. 'FileHandleCommon.h',
  13. 'FileHandleStorage.h',
  14. 'FileRequestBase.h',
  15. 'MutableFileBase.h',
  16. ]
  17. SOURCES += [
  18. 'ActorsChild.cpp',
  19. 'ActorsParent.cpp',
  20. 'FileHandleBase.cpp',
  21. 'FileHandleCommon.cpp',
  22. 'MutableFileBase.cpp',
  23. ]
  24. IPDL_SOURCES += [
  25. 'PBackgroundFileHandle.ipdl',
  26. 'PBackgroundFileRequest.ipdl',
  27. 'PBackgroundMutableFile.ipdl',
  28. ]
  29. include('/ipc/chromium/chromium-config.mozbuild')
  30. LOCAL_INCLUDES += [
  31. '../base',
  32. ]
  33. FINAL_LIBRARY = 'xul'
  34. LOCAL_INCLUDES += [
  35. '/xpcom/threads',
  36. ]