mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
Merge m-c to s-c.
This commit is contained in:
commit
40fc9fb602
@ -166,24 +166,9 @@ dombindings_gen.cpp: $(srcdir)/dombindings.conf \
|
||||
--makedepend-output $(MDDEPDIR)/dombindingsgen.pp \
|
||||
$(srcdir)/dombindings.conf
|
||||
|
||||
DictionaryHelpers.$(OBJ_SUFFIX): DictionaryHelpers.h \
|
||||
DictionaryHelpers.cpp
|
||||
DictionaryHelpers.$(OBJ_SUFFIX): DictionaryHelpers.cpp
|
||||
|
||||
DictionaryHelpers.h: $(srcdir)/dictionary_helper_gen.conf \
|
||||
event_impl_gen.conf \
|
||||
$(srcdir)/dictionary_helper_gen.py \
|
||||
$(srcdir)/codegen.py \
|
||||
$(LIBXUL_DIST)/sdk/bin/header.py \
|
||||
$(LIBXUL_DIST)/sdk/bin/xpidl.py \
|
||||
$(DEPTH)/js/src/js-confdefs.h
|
||||
$(PYTHON) $(topsrcdir)/config/pythonpath.py \
|
||||
$(PLY_INCLUDE) \
|
||||
-I$(LIBXUL_DIST)/sdk/bin \
|
||||
$(srcdir)/dictionary_helper_gen.py \
|
||||
-I $(DEPTH)/dist/idl \
|
||||
--header-output DictionaryHelpers.h \
|
||||
$(srcdir)/dictionary_helper_gen.conf \
|
||||
event_impl_gen.conf
|
||||
DictionaryHelpers.h: DictionaryHelpers.cpp
|
||||
|
||||
DictionaryHelpers.cpp: $(srcdir)/dictionary_helper_gen.conf \
|
||||
event_impl_gen.conf \
|
||||
@ -197,6 +182,7 @@ DictionaryHelpers.cpp: $(srcdir)/dictionary_helper_gen.conf \
|
||||
-I$(LIBXUL_DIST)/sdk/bin \
|
||||
$(srcdir)/dictionary_helper_gen.py \
|
||||
-I $(DEPTH)/dist/idl \
|
||||
--header-output DictionaryHelpers.h \
|
||||
--stub-output DictionaryHelpers.cpp \
|
||||
--makedepend-output $(MDDEPDIR)/dictionary_helper_gen.pp \
|
||||
$(srcdir)/dictionary_helper_gen.conf \
|
||||
|
@ -357,10 +357,6 @@ if __name__ == '__main__':
|
||||
|
||||
conf = readConfigFile(filename)
|
||||
|
||||
if options.header_output is not None:
|
||||
outfd = open(options.header_output, 'w')
|
||||
print_header_file(outfd, conf)
|
||||
outfd.close()
|
||||
if options.stub_output is not None:
|
||||
make_targets.append(options.stub_output)
|
||||
outfd = open(options.stub_output, 'w')
|
||||
@ -368,4 +364,8 @@ if __name__ == '__main__':
|
||||
outfd.close()
|
||||
if options.makedepend_output is not None:
|
||||
writeMakeDependOutput(options.makedepend_output)
|
||||
if options.header_output is not None:
|
||||
outfd = open(options.header_output, 'w')
|
||||
print_header_file(outfd, conf)
|
||||
outfd.close()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user