moz.build 613 B

123456789101112131415161718192021222324252627
  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.a11y += [
  6. 'AccessibleWrap.h',
  7. 'HyperTextAccessibleWrap.h',
  8. ]
  9. SOURCES += [
  10. 'AccessibleWrap.cpp',
  11. 'Platform.cpp',
  12. ]
  13. LOCAL_INCLUDES += [
  14. '/accessible/base',
  15. '/accessible/generic',
  16. '/accessible/html',
  17. '/accessible/xul',
  18. ]
  19. FINAL_LIBRARY = 'xul'
  20. if CONFIG['GNU_CXX']:
  21. CXXFLAGS += ['-Wno-error=shadow']