mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
5fe3250b5a
author=ashuk r=edburns Files modified A mozilla/java/webclient/classes_spec/org/mozilla/webclient/stubs A mozilla/java/webclient/classes_spec/org/mozilla/webclient/ProfileManager.java A mozilla/java/webclient/classes_spec/org/mozilla/webclient/wrapper_native/ProfileManagerImpl.java A mozilla/java/webclient/config/rules.mk A mozilla/java/webclient/config/rules.mak A mozilla/java/webclient/import A mozilla/java/webclient/import/Makefile.in A mozilla/java/webclient/import/Makefile.win A mozilla/java/webclient/import/chPackage.pl M mozilla/java/webclient/Makefile.in M mozilla/java/webclient/Makefile.win M mozilla/java/webclient/classes_spec/Makefile.in M mozilla/java/webclient/classes_spec/Makefile.win M mozilla/java/webclient/classes_spec/org/mozilla/webclient/BrowserControl.java M mozilla/java/webclient/classes_spec/org/mozilla/webclient/BrowserControlImpl.java M mozilla/java/webclient/classes_spec/org/mozilla/webclient/test/EMWindow.java M mozilla/java/webclient/classes_spec/org/mozilla/webclient/wrapper_native/WrapperFactoryImpl.java M mozilla/java/webclient/src_share/runem.pl This fix adds the new ProfileManager interface in the Webclient API. This is also the first integration of BlackConnect in Webclient. Webclient uses this ProfileManager interface to provide an interface to the nsIProfile api in Mozilla for profile management. It uses BlackConnect for this.
36 lines
1.2 KiB
Makefile
36 lines
1.2 KiB
Makefile
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Makefile to build the java/webclient tree
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Specify the depth of the current directory relative to the
|
|
#// root of NS
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
DEPTH=../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Specify any "command" targets. (ie. DIRS, INSTALL_FILES, ...)
|
|
#// (these must come before the common makefiles are included)
|
|
#//
|
|
#// DIRS - There are subdirectories to process
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
DIRS= import classes_spec src_share src_moz
|
|
|
|
#//------------------------------------------------------------------------
|
|
#//
|
|
#// Include the common makefile rules
|
|
#//
|
|
#//------------------------------------------------------------------------
|
|
include $(topsrcdir)/config/rules.mk
|