~mozillateam/mozilla-build-system/beta

« back to all changes in this revision

Viewing changes to dom/plugins/ipc/Makefile.in

  • Committer: Chris Coulson
  • Date: 2013-04-16 18:23:13 UTC
  • Revision ID: chris.coulson@canonical.com-20130416182313-l7ggn0243qrq4v97
Update to FIREFOX_21_0b1_BUILD1

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
topsrcdir = @top_srcdir@
7
7
srcdir = @srcdir@
8
8
VPATH = @srcdir@
9
 
FAIL_ON_WARNINGS := 1
10
9
 
11
10
include $(DEPTH)/config/autoconf.mk
12
11
 
13
12
MODULE = dom
 
13
ifndef _MSC_VER
 
14
FAIL_ON_WARNINGS := 1
 
15
endif # !_MSC_VER
14
16
 
15
17
EXPORTS_NAMESPACES = mozilla
16
18
 
41
43
  PluginScriptableObjectParent.h \
42
44
  PluginScriptableObjectUtils.h \
43
45
  PluginScriptableObjectUtils-inl.h \
44
 
  PluginInstanceChild.h \
45
 
  PluginInstanceParent.h \
46
46
  PluginUtilsOSX.h \
47
47
  AStream.h \
48
 
  BrowserStreamChild.h \
49
 
  BrowserStreamParent.h \
50
48
  PluginStreamChild.h \
51
49
  PluginStreamParent.h \
52
 
  PluginMessageUtils.h \
53
 
  PluginProcessParent.h \
54
50
  PluginProcessChild.h \
55
51
  StreamNotifyChild.h \
56
52
  StreamNotifyParent.h \
98
94
CPPSRCS += \
99
95
  COMMessageFilter.cpp \
100
96
  PluginSurfaceParent.cpp \
 
97
  MiniShmParent.cpp \
 
98
  PluginHangUIParent.cpp \
 
99
  $(NULL)
 
100
 
 
101
DEFINES += \
 
102
  -DMOZ_HANGUI_PROCESS_NAME=\"plugin-hang-ui$(BIN_SUFFIX)\" \
101
103
  $(NULL)
102
104
 
103
105
EXPORTS_mozilla/plugins += \
125
127
  -I$(topsrcdir)/xpcom/base/ \
126
128
  $(NULL)
127
129
 
 
130
ifeq (WINNT,$(OS_ARCH))
 
131
LOCAL_INCLUDES += \
 
132
  -I$(srcdir)/hangui \
 
133
  -I$(topsrcdir)/widget/shared \
 
134
  $(NULL)
 
135
endif
 
136
 
128
137
include $(topsrcdir)/config/config.mk
129
138
include $(topsrcdir)/ipc/chromium/chromium-config.mk
130
139