mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
76832ecb8b
This fix enables the Tasks->Java Console menu item to show the Java Console provided by the JRE plugin if it is installed. It also exposes nsIJVMManager as a full XPIDL citizen, with the progid component://netscape/oji/jvm-mgr. see modules/oji/public/nsIJVMManager.idl for the methods that can be called. Thanks to Trevor, John Bandauer, Brendan Eich and Robert Yang.
20 lines
616 B
Makefile
20 lines
616 B
Makefile
# this file contains defs that should be in the top level mozilla/config
|
|
# directory, but may not be there due to tree update issues.
|
|
|
|
|
|
!ifndef JAVA_HOME
|
|
JAVA_HOME=$(JDKHOME)
|
|
!endif
|
|
|
|
JAVA_DESTPATH = $(MOZ_SRC)\mozilla\dist\classes
|
|
DEFAULT_JAVA_SOURCEPATH = $(MOZ_SRC)\mozilla\sun-java\classsrc
|
|
JAVA_SOURCEPATH = $(MOZ_SRC)\mozilla\sun-java\classsrc11;$(DEFAULT_JAVA_SOURCEPATH)
|
|
JAVAC_ZIP=$(JAVA_HOME)\lib\classes.zip
|
|
JAVAC_CLASSPATH=$(JAVAC_ZIP)$(PATH_SEPARATOR)$(JAVA_DESTPATH)$(PATH_SEPARATOR)$(JAVA_SOURCEPATH)
|
|
|
|
|
|
JAVA=$(JDKHOME)\bin\java
|
|
JAVAH=$(JDKHOME)\bin\JAVAH
|
|
JAVAH_FLAGS=-jni -classpath $(JAVAC_CLASSPATH)
|
|
|