moz.build 919 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.dom += [
  6. 'AccessibleNode.h',
  7. ]
  8. SOURCES += [
  9. 'AccessibleNode.cpp',
  10. ]
  11. LOCAL_INCLUDES += [
  12. '/accessible/base',
  13. '/accessible/generic',
  14. ]
  15. if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']:
  16. LOCAL_INCLUDES += [
  17. '/accessible/atk',
  18. ]
  19. elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
  20. LOCAL_INCLUDES += [
  21. '/accessible/windows/ia2',
  22. '/accessible/windows/msaa',
  23. ]
  24. elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
  25. LOCAL_INCLUDES += [
  26. '/accessible/mac',
  27. ]
  28. else:
  29. LOCAL_INCLUDES += [
  30. '/accessible/other',
  31. ]
  32. include('/ipc/chromium/chromium-config.mozbuild')
  33. FINAL_LIBRARY = 'xul'