author | Birunthan Mohanathas <birunthan@mohanathas.com> |
Mon, 21 Jul 2014 06:01:08 -0700 | |
changeset 217211 | 12285ae78c93b17e7b5676c5655061b34ea63445 |
parent 217210 | 76be62e9944c0ff34e9a30258fa48b2c73b8cc32 |
child 217212 | 943221c8689873d65cdf50adbc074986281c6e70 |
push id | 3979 |
push user | raliiev@mozilla.com |
push date | Mon, 13 Oct 2014 16:35:44 +0000 |
treeherder | mozilla-beta@30f2cc610691 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | pike |
bugs | 1040774 |
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
|
deleted file mode 100644 --- a/rdf/base/idl/moz.build +++ /dev/null @@ -1,33 +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 += [ - 'nsIRDFCompositeDataSource.idl', - 'nsIRDFContainer.idl', - 'nsIRDFContainerUtils.idl', - 'nsIRDFDataSource.idl', - 'nsIRDFDelegateFactory.idl', - 'nsIRDFInferDataSource.idl', - 'nsIRDFInMemoryDataSource.idl', - 'nsIRDFLiteral.idl', - 'nsIRDFNode.idl', - 'nsIRDFObserver.idl', - 'nsIRDFPropagatableDataSource.idl', - 'nsIRDFPurgeableDataSource.idl', - 'nsIRDFRemoteDataSource.idl', - 'nsIRDFResource.idl', - 'nsIRDFService.idl', - 'nsIRDFXMLParser.idl', - 'nsIRDFXMLSerializer.idl', - 'nsIRDFXMLSink.idl', - 'nsIRDFXMLSource.idl', - 'rdfIDataSource.idl', - 'rdfISerializer.idl', - 'rdfITripleVisitor.idl', -] - -XPIDL_MODULE = 'rdf' -
--- a/rdf/base/moz.build +++ b/rdf/base/moz.build @@ -1,7 +1,57 @@ # -*- 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 += ['idl', 'public', 'src'] +XPIDL_SOURCES += [ + 'nsIRDFCompositeDataSource.idl', + 'nsIRDFContainer.idl', + 'nsIRDFContainerUtils.idl', + 'nsIRDFDataSource.idl', + 'nsIRDFDelegateFactory.idl', + 'nsIRDFInferDataSource.idl', + 'nsIRDFInMemoryDataSource.idl', + 'nsIRDFLiteral.idl', + 'nsIRDFNode.idl', + 'nsIRDFObserver.idl', + 'nsIRDFPropagatableDataSource.idl', + 'nsIRDFPurgeableDataSource.idl', + 'nsIRDFRemoteDataSource.idl', + 'nsIRDFResource.idl', + 'nsIRDFService.idl', + 'nsIRDFXMLParser.idl', + 'nsIRDFXMLSerializer.idl', + 'nsIRDFXMLSink.idl', + 'nsIRDFXMLSource.idl', + 'rdfIDataSource.idl', + 'rdfISerializer.idl', + 'rdfITripleVisitor.idl', +] + +XPIDL_MODULE = 'rdf' + +EXPORTS += [ + 'nsIRDFContentSink.h', + 'rdf.h', +] + +UNIFIED_SOURCES += [ + 'nsCompositeDataSource.cpp', + 'nsContainerEnumerator.cpp', + 'nsDefaultResourceFactory.cpp', + 'nsInMemoryDataSource.cpp', + 'nsNameSpaceMap.cpp', + 'nsRDFContainer.cpp', + 'nsRDFContainerUtils.cpp', + 'nsRDFContentSink.cpp', + 'nsRDFService.cpp', + 'nsRDFXMLDataSource.cpp', + 'nsRDFXMLParser.cpp', + 'nsRDFXMLSerializer.cpp', + 'rdfTriplesSerializer.cpp', + 'rdfutil.cpp', +] + +FAIL_ON_WARNINGS = True +FINAL_LIBRARY = 'rdf'
rename from rdf/base/src/nsDefaultResourceFactory.cpp rename to rdf/base/nsDefaultResourceFactory.cpp
rename from rdf/base/idl/nsIRDFCompositeDataSource.idl rename to rdf/base/nsIRDFCompositeDataSource.idl
rename from rdf/base/idl/nsIRDFInMemoryDataSource.idl rename to rdf/base/nsIRDFInMemoryDataSource.idl
rename from rdf/base/idl/nsIRDFPropagatableDataSource.idl rename to rdf/base/nsIRDFPropagatableDataSource.idl
rename from rdf/base/idl/nsIRDFPurgeableDataSource.idl rename to rdf/base/nsIRDFPurgeableDataSource.idl
deleted file mode 100644 --- a/rdf/base/public/moz.build +++ /dev/null @@ -1,11 +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 += [ - 'nsIRDFContentSink.h', - 'rdf.h', -] -
deleted file mode 100644 --- a/rdf/base/src/moz.build +++ /dev/null @@ -1,25 +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/. - -UNIFIED_SOURCES += [ - 'nsCompositeDataSource.cpp', - 'nsContainerEnumerator.cpp', - 'nsDefaultResourceFactory.cpp', - 'nsInMemoryDataSource.cpp', - 'nsNameSpaceMap.cpp', - 'nsRDFContainer.cpp', - 'nsRDFContainerUtils.cpp', - 'nsRDFContentSink.cpp', - 'nsRDFService.cpp', - 'nsRDFXMLDataSource.cpp', - 'nsRDFXMLParser.cpp', - 'nsRDFXMLSerializer.cpp', - 'rdfTriplesSerializer.cpp', - 'rdfutil.cpp', -] - -FAIL_ON_WARNINGS = True -FINAL_LIBRARY = 'rdf'
--- a/rdf/build/moz.build +++ b/rdf/build/moz.build @@ -12,12 +12,11 @@ SOURCES += [ 'nsRDFModule.cpp', ] LIBRARY_NAME = 'rdf' FINAL_LIBRARY = 'xul' LOCAL_INCLUDES += [ - '../base/src', - '../content/src', - '../datasource/src', + '/rdf/base', + '/rdf/datasource', ]
--- a/rdf/datasource/moz.build +++ b/rdf/datasource/moz.build @@ -1,7 +1,22 @@ # -*- 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'] +EXPORTS += [ + 'nsILocalStore.h', +] + +UNIFIED_SOURCES += [ + 'nsFileSystemDataSource.cpp', + 'nsLocalStore.cpp', +] + +FINAL_LIBRARY = 'rdf' + +# "This is a dependency on rdfutil.h: it'll go away once that becomes +# a first-class XPCOM interface." +LOCAL_INCLUDES += [ + '/rdf/base', +]
rename from rdf/datasource/src/nsFileSystemDataSource.cpp rename to rdf/datasource/nsFileSystemDataSource.cpp
rename from rdf/datasource/src/nsFileSystemDataSource.h rename to rdf/datasource/nsFileSystemDataSource.h
rename from rdf/datasource/src/nsRDFBuiltInDataSources.h rename to rdf/datasource/nsRDFBuiltInDataSources.h
deleted file mode 100644 --- a/rdf/datasource/public/moz.build +++ /dev/null @@ -1,10 +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 += [ - 'nsILocalStore.h', -] -
deleted file mode 100644 --- a/rdf/datasource/src/moz.build +++ /dev/null @@ -1,19 +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/. - -UNIFIED_SOURCES += [ - 'nsFileSystemDataSource.cpp', - 'nsLocalStore.cpp', -] - -FINAL_LIBRARY = 'rdf' - -# "This is a dependency on rdfutil.h: it'll go away once that becomes -# a first-class XPCOM interface." -LOCAL_INCLUDES += [ - '../../base/src', -] -
--- a/rdf/util/moz.build +++ b/rdf/util/moz.build @@ -1,8 +1,20 @@ # -*- 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'] +DIRS += ['internal'] + +EXPORTS += [ + 'nsRDFResource.h', +] +include('objs.mozbuild') + +SOURCES += rdf_util_src_cppsrcs + +LIBRARY_NAME = 'rdfutil_external_s' + +# we don't want the shared lib, but we want to force the creation of a static lib. +FORCE_STATIC_LIB = True
rename from rdf/util/src/objs.mozbuild rename to rdf/util/objs.mozbuild --- a/rdf/util/src/objs.mozbuild +++ b/rdf/util/objs.mozbuild @@ -4,10 +4,10 @@ # 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/. rdf_util_src_lcppsrcs = [ 'nsRDFResource.cpp', ] rdf_util_src_cppsrcs = [ - '%s/rdf/util/src/%s' % (TOPSRCDIR, s) for s in rdf_util_src_lcppsrcs + '%s/rdf/util/%s' % (TOPSRCDIR, s) for s in rdf_util_src_lcppsrcs ]
deleted file mode 100644 --- a/rdf/util/public/moz.build +++ /dev/null @@ -1,10 +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 += [ - 'nsRDFResource.h', -] -
deleted file mode 100644 --- a/rdf/util/src/moz.build +++ /dev/null @@ -1,16 +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/. - -DIRS += ['internal'] - -include('objs.mozbuild') - -SOURCES += rdf_util_src_cppsrcs - -LIBRARY_NAME = 'rdfutil_external_s' - -# we don't want the shared lib, but we want to force the creation of a static lib. -FORCE_STATIC_LIB = True