gecko/xpcom/glue/objs.mk
Benjamin Smedberg ea4315c1ff Bug 755724 Part C - Move ScopedAppData into the XPCOM glue, r=glandium
--HG--
rename : toolkit/xre/nsAppData.cpp => toolkit/xre/CreateAppData.cpp
rename : toolkit/xre/nsAppData.cpp => xpcom/glue/AppData.cpp
extra : rebase_source : 6223397345e77b00f14d93a1f188c042fc5f89ea
2012-06-08 08:41:30 -04:00

53 lines
1.7 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 \
nsCycleCollectorUtils.cpp \
nsDeque.cpp \
pldhash.cpp \
$(NULL)
XPCOM_GLUE_SRC_CPPSRCS = $(addprefix $(topsrcdir)/xpcom/glue/, $(XPCOM_GLUE_SRC_LCPPSRCS))
XPCOM_GLUENS_SRC_LCPPSRCS = \
BlockingResourceBase.cpp \
DeadlockDetector.cpp \
SSE.cpp \
unused.cpp \
nsProxyRelease.cpp \
nsTextFormatter.cpp \
GenericFactory.cpp \
FileUtils.cpp \
$(NULL)
ifneq (,$(filter arm%,$(TARGET_CPU)))
XPCOM_GLUENS_SRC_LCPPSRCS += arm.cpp
endif
XPCOM_GLUENS_SRC_CPPSRCS = $(addprefix $(topsrcdir)/xpcom/glue/,$(XPCOM_GLUENS_SRC_LCPPSRCS))