moz.build 713 B

12345678910111213141516171819202122232425262728293031323334
  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. 'nsIAboutModule.idl',
  7. ]
  8. XPIDL_MODULE = 'necko_about'
  9. EXPORTS += [
  10. 'nsAboutProtocolUtils.h',
  11. ]
  12. SOURCES += [
  13. 'nsAboutBlank.cpp',
  14. 'nsAboutCache.cpp',
  15. 'nsAboutCacheEntry.cpp',
  16. 'nsAboutProtocolHandler.cpp',
  17. ]
  18. include('/ipc/chromium/chromium-config.mozbuild')
  19. FINAL_LIBRARY = 'xul'
  20. LOCAL_INCLUDES += [
  21. '/netwerk/base',
  22. '/netwerk/cache2',
  23. ]
  24. if CONFIG['GNU_CXX']:
  25. CXXFLAGS += ['-Wno-error=shadow']