aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/bindings/codegen/Makefile.in
blob: 5fef1e772186521819bf3be38781346cfdf2fa17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# 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/.

DEPTH            = @DEPTH@
topsrcdir        = @top_srcdir@
srcdir           = @srcdir@
VPATH            = @srcdir@
FAIL_ON_WARNINGS := 1

MODULE           = dom
LIBRARY_NAME     = dombindings_s
LIBXUL_LIBRARY   = 1
FORCE_STATIC_LIB = 1
EXPORT_LIBRARY   = 1

include $(topsrcdir)/config/config.mk

# Need this to find all our DOM source files.
include $(topsrcdir)/dom/dom-config.mk

include $(topsrcdir)/dom/webidl/WebIDL.mk

binding_include_path := mozilla/dom
all_webidl_files = $(webidl_files) $(generated_webidl_files)
# Set exported_binding_headers before adding the test IDL to the mix
exported_binding_headers := $(subst .webidl,Binding.h,$(all_webidl_files))
# Set linked_binding_cpp_files before adding the test IDL to the mix
linked_binding_cpp_files := $(subst .webidl,Binding.cpp,$(all_webidl_files))

all_webidl_files += $(test_webidl_files)

binding_header_files := $(subst .webidl,Binding.h,$(all_webidl_files))
binding_cpp_files := $(subst .webidl,Binding.cpp,$(all_webidl_files))

globalgen_targets := \
  PrototypeList.h \
  RegisterBindings.h \
  RegisterBindings.cpp \
  UnionTypes.h \
  UnionConversions.h \
  $(NULL)

CPPSRCS = \
  $(linked_binding_cpp_files) \
  $(filter %.cpp, $(globalgen_targets)) \
  BindingUtils.cpp \
  DOMJSProxyHandler.cpp \
  $(NULL)

EXPORTS_NAMESPACES = $(binding_include_path) mozilla

EXPORTS_mozilla = \
  ErrorResult.h \
  $(NULL)

EXPORTS_$(binding_include_path) = \
  BindingUtils.h \
  DOMJSClass.h \
  DOMJSProxyHandler.h \
  Errors.msg \
  Nullable.h \
  PrimitiveConversions.h \
  PrototypeList.h \
  RegisterBindings.h \
  TypedArray.h \
  UnionConversions.h \
  UnionTypes.h \
  $(exported_binding_headers) \
  $(NULL)

LOCAL_INCLUDES += -I$(topsrcdir)/js/xpconnect/src \
  -I$(topsrcdir)/js/xpconnect/wrappers \
  -I$(topsrcdir)/content/canvas/src \
  -I$(topsrcdir)/content/html/content/src

include $(topsrcdir)/config/rules.mk

# If you change bindinggen_dependencies here, change it in
# dom/bindings/test/Makefile.in too.
bindinggen_dependencies := \
  BindingGen.py \
  Bindings.conf \
  Configuration.py \
  Codegen.py \
  parser/WebIDL.py \
  ParserResults.pkl \
  $(GLOBAL_DEPS) \
  $(NULL)

CSS2Properties.webidl: $(topsrcdir)/layout/style/nsCSSPropList.h \
                       $(topsrcdir)/layout/style/nsCSSPropAliasList.h \
                       $(webidl_base)/CSS2Properties.webidl.in \
                       $(webidl_base)/CSS2PropertiesProps.h \
                       $(srcdir)/GenerateCSS2PropertiesWebIDL.py \
                       $(GLOBAL_DEPS)
	$(CPP) $(DEFINES) $(ACDEFINES) -I$(topsrcdir)/layout/style $(webidl_base)/CSS2PropertiesProps.h | \
	  $(PYTHON) \
	  $(srcdir)/GenerateCSS2PropertiesWebIDL.py $(webidl_base)/CSS2Properties.webidl.in > CSS2Properties.webidl

$(webidl_files): %: $(webidl_base)/%
	$(INSTALL) $(IFLAGS1) $(webidl_base)/$* .

$(test_webidl_files): %: $(srcdir)/test/%
	$(INSTALL) $(IFLAGS1) $(srcdir)/test/$* .

$(binding_header_files): %Binding.h: $(bindinggen_dependencies) \
                                     %.webidl \
                                     $(NULL)
	$(PYTHON) $(topsrcdir)/config/pythonpath.py \
	  $(PLY_INCLUDE) -I$(srcdir)/parser \
	  $(srcdir)/BindingGen.py header \
	  $(srcdir)/Bindings.conf $*Binding \
	  $*.webidl

$(binding_cpp_files): %Binding.cpp: $(bindinggen_dependencies) \
                                    %.webidl \
                                    $(NULL)
	$(PYTHON) $(topsrcdir)/config/pythonpath.py \
	  $(PLY_INCLUDE) -I$(srcdir)/parser \
	  $(srcdir)/BindingGen.py cpp \
	  $(srcdir)/Bindings.conf $*Binding \
	  $*.webidl

$(globalgen_targets): ParserResults.pkl

CACHE_DIR = _cache

globalgen_dependencies := \
  GlobalGen.py \
  Bindings.conf \
  Configuration.py \
  Codegen.py \
  parser/WebIDL.py \
  $(CACHE_DIR)/.done \
  $(GLOBAL_DEPS) \
  $(NULL)

$(CACHE_DIR)/.done:
	$(MKDIR) -p $(CACHE_DIR)
	@$(TOUCH) $@

ParserResults.pkl: $(globalgen_dependencies) \
                   $(all_webidl_files)
	$(PYTHON) $(topsrcdir)/config/pythonpath.py \
    $(PLY_INCLUDE) -I$(srcdir)/parser \
    $(srcdir)/GlobalGen.py $(srcdir)/Bindings.conf . \
    --cachedir=$(CACHE_DIR) \
    $(all_webidl_files)

GARBAGE += \
  $(binding_header_files) \
  $(binding_cpp_files) \
  $(all_webidl_files) \
  $(globalgen_targets) \
  ParserResults.pkl \
  webidlyacc.py \
  parser.out \
  $(NULL)

# Make sure all binding header files are created during the export stage, so we
# don't have issues with .cpp files being compiled before we've generated the
# headers they depend on.  This is really only needed for the test files, since
# the non-test headers are all exported above anyway.
export:: $(binding_header_files)