#!make

DEPTH       = ../../..
topsrcdir	= ../../..
VPATH		= .
srcdir		= .

# Our Java XPCOM component

# The name that will be given to the JAR file holding this XPCOM component (i.e. nsJavaFoo.jar)
JAVAMODULE      = nsJavaFoo

# Any new IDL files that are defined for this Java XPCOM component
# These will be copied to dist/idl
JAVAXPIDLS      = nsIFoo.idl

# Any IDL files that your Java source-code depends on that live in dist/idl.
# You don't have to include IDL files that are referenced from your new Java IDL defined in 
# JAVAXPIDLS because xpidl will automatically import and copy these over.
# However, if your Java sources need to use other XPCOM components then they must be included
# in this variable.
JAVAIDLREQUIRES = nsIConsoleService.idl nsIConsoleMessage.idl nsIConsoleListener.idl

# Your Java sources to implement your XPCOM component.
# You shouldn't put any .java files here that are generated from IDL files
# (such as nsIFoo.java generated from nsIFoo.idl)
JAVASRCS        = nsJavaFoo.java

include $(DEPTH)/config/javarules.mk


