mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
put #ifdef's around the interface stub implementation output so that generated files can still
be part of the build system.
This commit is contained in:
parent
9e3822934f
commit
42a42d12dd
@ -523,6 +523,7 @@ stub_interface(TreeState *state)
|
||||
|
||||
/* Emit a InitJSClass static method. */
|
||||
fprintf(state->file,
|
||||
"#ifdef XPIDL_JS_STUBS\n"
|
||||
"\nJSObject *\n"
|
||||
"%s::InitJSClass(JSContext *cx)\n"
|
||||
"{\n"
|
||||
@ -579,7 +580,8 @@ stub_interface(TreeState *state)
|
||||
" }\n"
|
||||
" }\n"
|
||||
" return (JSObject *)JSVAL_TO_PRIVATE(v);\n"
|
||||
"}\n",
|
||||
"}\n"
|
||||
"#endif /* XPIDL_JS_STUBS */\n",
|
||||
className, className, className);
|
||||
}
|
||||
|
||||
|
@ -523,6 +523,7 @@ stub_interface(TreeState *state)
|
||||
|
||||
/* Emit a InitJSClass static method. */
|
||||
fprintf(state->file,
|
||||
"#ifdef XPIDL_JS_STUBS\n"
|
||||
"\nJSObject *\n"
|
||||
"%s::InitJSClass(JSContext *cx)\n"
|
||||
"{\n"
|
||||
@ -579,7 +580,8 @@ stub_interface(TreeState *state)
|
||||
" }\n"
|
||||
" }\n"
|
||||
" return (JSObject *)JSVAL_TO_PRIVATE(v);\n"
|
||||
"}\n",
|
||||
"}\n"
|
||||
"#endif /* XPIDL_JS_STUBS */\n",
|
||||
className, className, className);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user