fix bug 344107, don't export platform-native headers to all platforms. r=mento

git-svn-id: svn://10.0.0.236/trunk@201866 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hwaara%gmail.com 2006-07-11 09:06:24 +00:00
parent 9ab6dbea5f
commit e351af0bb2

View File

@ -61,17 +61,34 @@ EXPORTS = \
nsIMenuListener.h \
nsWidgetsCID.h \
nsILookAndFeel.h \
nsIDragSessionGTK.h \
nsIDragSessionXlib.h \
nsIDragSessionMac.h \
nsIDragSessionOS2.h \
nsIDragSessionBeOS.h \
nsIPluginWidget.h \
nsINativeKeyBindings.h \
nsIDeviceContextSpec.h \
nsIDeviceContextSpecFactory.h \
$(NULL)
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
EXPORTS += \
nsIDragSessionMac.h \
nsIPrintingContext.h
endif
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
EXPORTS += nsIDragSessionOS2.h
endif
ifeq ($(MOZ_WIDGET_TOOLKIT),beos)
EXPORTS += nsIDragSessionBeOS.h
endif
ifeq ($(MOZ_WIDGET_TOOLKIT),xlib)
EXPORTS += nsIDragSessionXlib.h
endif
ifneq (,$(filter gtk gtk2,$(MOZ_WIDGET_TOOLKIT)))
EXPORTS += nsIDragSessionGTK.h
endif
XPIDLSRCS = \
nsIAppShell.idl \
nsIFilePicker.idl \
@ -108,8 +125,6 @@ ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
XPIDLSRCS += nsIEventSink.idl \
nsIPrintSettingsX.idl \
nsIPrintSessionX.idl
EXPORTS += nsIPrintingContext.h
endif
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))