author | Birunthan Mohanathas <birunthan@mohanathas.com |
Tue, 26 Aug 2014 07:10:58 -0700 | |
changeset 201672 | 616c50b78907ab059a930601a3c9a470e0b96fb3 |
parent 201671 | f37d8b5936c470718e80f34d9ea9ca942b63de8b |
child 201673 | ed82256c4a29002d042c969ad3cbb77df7b390c9 |
push id | 27375 |
push user | ryanvm@gmail.com |
push date | Tue, 26 Aug 2014 19:56:59 +0000 |
treeherder | mozilla-central@f9bfe115fee5 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | peterv |
bugs | 1057923 |
milestone | 34.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/parser/xml/moz.build +++ b/parser/xml/moz.build @@ -1,8 +1,38 @@ # -*- 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/. -DIRS += ['public', 'src'] 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'
rename from parser/xml/public/nsIMozSAXXMLDeclarationHandler.idl rename to parser/xml/nsIMozSAXXMLDeclarationHandler.idl
rename from parser/xml/public/nsISAXContentHandler.idl rename to parser/xml/nsISAXContentHandler.idl
rename from parser/xml/public/nsISAXLexicalHandler.idl rename to parser/xml/nsISAXLexicalHandler.idl
rename from parser/xml/public/nsISAXMutableAttributes.idl rename to parser/xml/nsISAXMutableAttributes.idl
deleted file mode 100644 --- a/parser/xml/public/moz.build +++ /dev/null @@ -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' -
deleted file mode 100644 --- a/parser/xml/src/moz.build +++ /dev/null @@ -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'