mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-06-22 00:19:01 +00:00
2bd3a3c9ef
- #565: implement nsASCIIMask from M1358297 (41b1fc937) - #565: M1358297 parts 3 and 4 (3fd15a87a) - #632: M1424915 M1354233 M1324114 M1343008 M1236277(just backbugs) M1328955 (d87db7e16) - #632: M1362498 M1397686 M136178 M1320252 M1355875 (82cb3b59e) - #632: M241788 M1271955 M1249352(p1) + additional local optimizations (438bdb726) - #632: M1249352 part 2 (2c61821e4) - #632: M1249352(remaining) M1358297(backbugs) M1369317(pp1,3,4) M1426996 (1eab6170b)
64 lines
1.7 KiB
INI
64 lines
1.7 KiB
INI
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
with Files('**'):
|
|
BUG_COMPONENT = ('Core', 'String')
|
|
|
|
EXPORTS += [
|
|
'nsASCIIMask.h',
|
|
'nsAString.h',
|
|
'nsCharTraits.h',
|
|
'nsDependentString.h',
|
|
'nsDependentSubstring.h',
|
|
'nsEmbedString.h',
|
|
'nsLiteralString.h',
|
|
'nsPrintfCString.h',
|
|
'nsPromiseFlatString.h',
|
|
'nsReadableUtils.h',
|
|
'nsString.h',
|
|
'nsStringBuffer.h',
|
|
'nsStringFwd.h',
|
|
'nsStringIterator.h',
|
|
'nsSubstring.h',
|
|
'nsSubstringTuple.h',
|
|
'nsTDependentString.h',
|
|
'nsTDependentSubstring.h',
|
|
'nsTLiteralString.h',
|
|
'nsTPromiseFlatString.h',
|
|
'nsTString.h',
|
|
'nsTSubstring.h',
|
|
'nsTSubstringTuple.h',
|
|
'nsUTF8Utils.h',
|
|
'nsXPCOMStrings.h',
|
|
'nsXPIDLString.h',
|
|
'string-template-def-char.h',
|
|
'string-template-def-unichar.h',
|
|
'string-template-undef.h',
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
'nsASCIIMask.cpp',
|
|
'nsDependentString.cpp',
|
|
'nsDependentSubstring.cpp',
|
|
'nsPromiseFlatString.cpp',
|
|
'nsReadableUtils.cpp',
|
|
'nsString.cpp',
|
|
'nsStringComparator.cpp',
|
|
'nsStringObsolete.cpp',
|
|
'nsSubstring.cpp',
|
|
'nsSubstringTuple.cpp',
|
|
]
|
|
|
|
# Are we targeting x86 or x86-64? If so, compile the SSE2 functions for
|
|
# nsUTF8Utils.cpp and nsReadableUtils.cpp.
|
|
if CONFIG['INTEL_ARCHITECTURE']:
|
|
SOURCES += ['nsUTF8UtilsSSE2.cpp']
|
|
SOURCES['nsUTF8UtilsSSE2.cpp'].flags += CONFIG['SSE2_FLAGS']
|
|
SOURCES += ['nsReadableUtilsSSE2.cpp']
|
|
SOURCES['nsReadableUtilsSSE2.cpp'].flags += CONFIG['SSE2_FLAGS']
|
|
|
|
FINAL_LIBRARY = 'xul'
|