mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1057923 - Flatten parser/xml/{public,src}/ into parent directory. r=peterv
--HG-- rename : parser/xml/public/nsIMozSAXXMLDeclarationHandler.idl => parser/xml/nsIMozSAXXMLDeclarationHandler.idl rename : parser/xml/public/nsISAXAttributes.idl => parser/xml/nsISAXAttributes.idl rename : parser/xml/public/nsISAXContentHandler.idl => parser/xml/nsISAXContentHandler.idl rename : parser/xml/public/nsISAXDTDHandler.idl => parser/xml/nsISAXDTDHandler.idl rename : parser/xml/public/nsISAXErrorHandler.idl => parser/xml/nsISAXErrorHandler.idl rename : parser/xml/public/nsISAXLexicalHandler.idl => parser/xml/nsISAXLexicalHandler.idl rename : parser/xml/public/nsISAXLocator.idl => parser/xml/nsISAXLocator.idl rename : parser/xml/public/nsISAXMutableAttributes.idl => parser/xml/nsISAXMutableAttributes.idl rename : parser/xml/public/nsISAXXMLFilter.idl => parser/xml/nsISAXXMLFilter.idl rename : parser/xml/public/nsISAXXMLReader.idl => parser/xml/nsISAXXMLReader.idl rename : parser/xml/src/nsSAXAttributes.cpp => parser/xml/nsSAXAttributes.cpp rename : parser/xml/src/nsSAXAttributes.h => parser/xml/nsSAXAttributes.h rename : parser/xml/src/nsSAXLocator.cpp => parser/xml/nsSAXLocator.cpp rename : parser/xml/src/nsSAXLocator.h => parser/xml/nsSAXLocator.h rename : parser/xml/src/nsSAXXMLReader.cpp => parser/xml/nsSAXXMLReader.cpp rename : parser/xml/src/nsSAXXMLReader.h => parser/xml/nsSAXXMLReader.h
This commit is contained in:
parent
657dc00b05
commit
4544b7feb6
@ -4,5 +4,35 @@
|
|||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# 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/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
DIRS += ['public', 'src']
|
|
||||||
TEST_DIRS += ['test']
|
TEST_DIRS += ['test']
|
||||||
|
|
||||||
|
XPIDL_SOURCES += [
|
||||||
|
'nsIMozSAXXMLDeclarationHandler.idl',
|
||||||
|
'nsISAXAttributes.idl',
|
||||||
|
'nsISAXContentHandler.idl',
|
||||||
|
'nsISAXDTDHandler.idl',
|
||||||
|
'nsISAXErrorHandler.idl',
|
||||||
|
'nsISAXLexicalHandler.idl',
|
||||||
|
'nsISAXLocator.idl',
|
||||||
|
'nsISAXMutableAttributes.idl',
|
||||||
|
'nsISAXXMLFilter.idl',
|
||||||
|
'nsISAXXMLReader.idl',
|
||||||
|
]
|
||||||
|
|
||||||
|
XPIDL_MODULE = 'saxparser'
|
||||||
|
|
||||||
|
EXPORTS += [
|
||||||
|
'nsSAXAttributes.h',
|
||||||
|
'nsSAXLocator.h',
|
||||||
|
'nsSAXXMLReader.h',
|
||||||
|
]
|
||||||
|
|
||||||
|
SOURCES += [
|
||||||
|
'nsSAXAttributes.cpp',
|
||||||
|
'nsSAXLocator.cpp',
|
||||||
|
'nsSAXXMLReader.cpp',
|
||||||
|
]
|
||||||
|
|
||||||
|
MSVC_ENABLE_PGO = True
|
||||||
|
|
||||||
|
FINAL_LIBRARY = 'xul'
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
||||||
|
|
||||||
XPIDL_SOURCES += [
|
|
||||||
'nsIMozSAXXMLDeclarationHandler.idl',
|
|
||||||
'nsISAXAttributes.idl',
|
|
||||||
'nsISAXContentHandler.idl',
|
|
||||||
'nsISAXDTDHandler.idl',
|
|
||||||
'nsISAXErrorHandler.idl',
|
|
||||||
'nsISAXLexicalHandler.idl',
|
|
||||||
'nsISAXLocator.idl',
|
|
||||||
'nsISAXMutableAttributes.idl',
|
|
||||||
'nsISAXXMLFilter.idl',
|
|
||||||
'nsISAXXMLReader.idl',
|
|
||||||
]
|
|
||||||
|
|
||||||
XPIDL_MODULE = 'saxparser'
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
|||||||
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
||||||
|
|
||||||
EXPORTS += [
|
|
||||||
'nsSAXAttributes.h',
|
|
||||||
'nsSAXLocator.h',
|
|
||||||
'nsSAXXMLReader.h',
|
|
||||||
]
|
|
||||||
|
|
||||||
SOURCES += [
|
|
||||||
'nsSAXAttributes.cpp',
|
|
||||||
'nsSAXLocator.cpp',
|
|
||||||
'nsSAXXMLReader.cpp',
|
|
||||||
]
|
|
||||||
|
|
||||||
MSVC_ENABLE_PGO = True
|
|
||||||
|
|
||||||
FINAL_LIBRARY = 'xul'
|
|
Loading…
Reference in New Issue
Block a user