michael@0: # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- michael@0: # vim: set filetype=python: michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: xpcom_glue_src_lcppsrcs = [ michael@0: 'AppData.cpp', michael@0: 'FileUtils.cpp', michael@0: 'nsArrayEnumerator.cpp', michael@0: 'nsArrayUtils.cpp', michael@0: 'nsCategoryCache.cpp', michael@0: 'nsClassInfoImpl.cpp', michael@0: 'nsCOMArray.cpp', michael@0: 'nsComponentManagerUtils.cpp', michael@0: 'nsCOMPtr.cpp', michael@0: 'nsCRTGlue.cpp', michael@0: 'nsCycleCollectionParticipant.cpp', michael@0: 'nsDeque.cpp', michael@0: 'nsEnumeratorUtils.cpp', michael@0: 'nsID.cpp', michael@0: 'nsIInterfaceRequestorUtils.cpp', michael@0: 'nsINIParser.cpp', michael@0: 'nsISupportsImpl.cpp', michael@0: 'nsMemory.cpp', michael@0: 'nsQuickSort.cpp', michael@0: 'nsTArray.cpp', michael@0: 'nsTHashtable.cpp', michael@0: 'nsThreadUtils.cpp', michael@0: 'nsTObserverArray.cpp', michael@0: 'nsVersionComparator.cpp', michael@0: 'nsVoidArray.cpp', michael@0: 'nsWeakReference.cpp', michael@0: 'pldhash.cpp', michael@0: ] michael@0: michael@0: xpcom_glue_src_cppsrcs = [ michael@0: '%s/xpcom/glue/%s' % (TOPSRCDIR, s) for s in xpcom_glue_src_lcppsrcs michael@0: ] michael@0: michael@0: xpcom_gluens_src_lcppsrcs = [ michael@0: 'BlockingResourceBase.cpp', michael@0: 'DeadlockDetector.cpp', michael@0: 'GenericFactory.cpp', michael@0: 'nsProxyRelease.cpp', michael@0: 'nsTextFormatter.cpp', michael@0: 'unused.cpp', michael@0: ] michael@0: michael@0: xpcom_gluens_src_cppsrcs = [ michael@0: '%s/xpcom/glue/%s' % (TOPSRCDIR, s) for s in xpcom_gluens_src_lcppsrcs michael@0: ]