moz.build 636 B

1234567891011121314151617181920212223242526
  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. SOURCES += [
  6. 'nsCollationWin.cpp',
  7. 'nsDateTimeFormatWin.cpp',
  8. 'nsWin32Locale.cpp',
  9. 'nsWinCharset.cpp',
  10. ]
  11. FINAL_LIBRARY = 'xul'
  12. GENERATED_FILES = [
  13. 'wincharset.properties.h',
  14. ]
  15. wincharset = GENERATED_FILES['wincharset.properties.h']
  16. wincharset.script = '../props2arrays.py'
  17. wincharset.inputs = ['wincharset.properties']
  18. LOCAL_INCLUDES += [
  19. '..',
  20. ]