mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
47 lines
1.6 KiB
Makefile
47 lines
1.6 KiB
Makefile
# 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/.
|
|
|
|
XPCOM_GLUE_SRC_LCPPSRCS = \
|
|
AppData.cpp \
|
|
nsArrayEnumerator.cpp \
|
|
nsArrayUtils.cpp \
|
|
nsCategoryCache.cpp \
|
|
nsCOMPtr.cpp \
|
|
nsCOMArray.cpp \
|
|
nsCRTGlue.cpp \
|
|
nsClassInfoImpl.cpp \
|
|
nsComponentManagerUtils.cpp \
|
|
nsEnumeratorUtils.cpp \
|
|
nsID.cpp \
|
|
nsIInterfaceRequestorUtils.cpp \
|
|
nsINIParser.cpp \
|
|
nsISupportsImpl.cpp \
|
|
nsMemory.cpp \
|
|
nsWeakReference.cpp \
|
|
nsVersionComparator.cpp \
|
|
nsTHashtable.cpp \
|
|
nsQuickSort.cpp \
|
|
nsVoidArray.cpp \
|
|
nsTArray.cpp \
|
|
nsThreadUtils.cpp \
|
|
nsTObserverArray.cpp \
|
|
nsCycleCollectionParticipant.cpp \
|
|
nsDeque.cpp \
|
|
pldhash.cpp \
|
|
FileUtils.cpp \
|
|
$(NULL)
|
|
|
|
XPCOM_GLUE_SRC_CPPSRCS = $(addprefix $(topsrcdir)/xpcom/glue/, $(XPCOM_GLUE_SRC_LCPPSRCS))
|
|
|
|
XPCOM_GLUENS_SRC_LCPPSRCS = \
|
|
BlockingResourceBase.cpp \
|
|
DeadlockDetector.cpp \
|
|
unused.cpp \
|
|
nsProxyRelease.cpp \
|
|
nsTextFormatter.cpp \
|
|
GenericFactory.cpp \
|
|
$(NULL)
|
|
|
|
XPCOM_GLUENS_SRC_CPPSRCS = $(addprefix $(topsrcdir)/xpcom/glue/,$(XPCOM_GLUENS_SRC_LCPPSRCS))
|