moz.build 596 B

123456789101112131415161718192021222324
  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. XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini']
  6. XPIDL_SOURCES += [
  7. 'nsIStringBundle.idl',
  8. 'nsIStringBundleOverride.idl',
  9. ]
  10. XPIDL_MODULE = 'intl'
  11. UNIFIED_SOURCES += [
  12. 'nsStringBundle.cpp',
  13. 'nsStringBundleTextOverride.cpp',
  14. ]
  15. FINAL_LIBRARY = 'xul'
  16. if CONFIG['GNU_CXX']:
  17. CXXFLAGS += ['-Wno-error=shadow']