1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/xpcom/glue/objs.mozbuild Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,52 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +xpcom_glue_src_lcppsrcs = [ 1.11 + 'AppData.cpp', 1.12 + 'FileUtils.cpp', 1.13 + 'nsArrayEnumerator.cpp', 1.14 + 'nsArrayUtils.cpp', 1.15 + 'nsCategoryCache.cpp', 1.16 + 'nsClassInfoImpl.cpp', 1.17 + 'nsCOMArray.cpp', 1.18 + 'nsComponentManagerUtils.cpp', 1.19 + 'nsCOMPtr.cpp', 1.20 + 'nsCRTGlue.cpp', 1.21 + 'nsCycleCollectionParticipant.cpp', 1.22 + 'nsDeque.cpp', 1.23 + 'nsEnumeratorUtils.cpp', 1.24 + 'nsID.cpp', 1.25 + 'nsIInterfaceRequestorUtils.cpp', 1.26 + 'nsINIParser.cpp', 1.27 + 'nsISupportsImpl.cpp', 1.28 + 'nsMemory.cpp', 1.29 + 'nsQuickSort.cpp', 1.30 + 'nsTArray.cpp', 1.31 + 'nsTHashtable.cpp', 1.32 + 'nsThreadUtils.cpp', 1.33 + 'nsTObserverArray.cpp', 1.34 + 'nsVersionComparator.cpp', 1.35 + 'nsVoidArray.cpp', 1.36 + 'nsWeakReference.cpp', 1.37 + 'pldhash.cpp', 1.38 +] 1.39 + 1.40 +xpcom_glue_src_cppsrcs = [ 1.41 + '%s/xpcom/glue/%s' % (TOPSRCDIR, s) for s in xpcom_glue_src_lcppsrcs 1.42 +] 1.43 + 1.44 +xpcom_gluens_src_lcppsrcs = [ 1.45 + 'BlockingResourceBase.cpp', 1.46 + 'DeadlockDetector.cpp', 1.47 + 'GenericFactory.cpp', 1.48 + 'nsProxyRelease.cpp', 1.49 + 'nsTextFormatter.cpp', 1.50 + 'unused.cpp', 1.51 +] 1.52 + 1.53 +xpcom_gluens_src_cppsrcs = [ 1.54 + '%s/xpcom/glue/%s' % (TOPSRCDIR, s) for s in xpcom_gluens_src_lcppsrcs 1.55 +]