1999-06-10 22:08:59 +00:00
|
|
|
#!gmake
|
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The contents of this file are subject to the Netscape Public
|
|
|
|
# License Version 1.1 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.mozilla.org/NPL/
|
1999-06-10 22:08:59 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# Software distributed under the License is distributed on an "AS
|
|
|
|
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
# implied. See the License for the specific language governing
|
|
|
|
# rights and limitations under the License.
|
1999-06-10 22:08:59 +00:00
|
|
|
#
|
1999-11-06 03:43:54 +00:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape
|
1999-06-10 22:08:59 +00:00
|
|
|
# Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
# Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-06-10 22:08:59 +00:00
|
|
|
|
|
|
|
DEPTH=..\..
|
1999-09-01 00:54:34 +00:00
|
|
|
|
1999-06-10 22:08:59 +00:00
|
|
|
DEFINES=-D_IMPL_NS_COOKIE -DWIN32_LEAN_AND_MEAN
|
|
|
|
MODULE=cookie
|
2001-06-20 20:21:49 +00:00
|
|
|
LIBRARY_NAME=cookie
|
|
|
|
MODULE_NAME=nsCookieModule
|
2001-09-18 22:01:13 +00:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
necko \
|
|
|
|
dom \
|
|
|
|
widget \
|
|
|
|
pref \
|
|
|
|
intl \
|
|
|
|
uriloader \
|
|
|
|
windowwatcher \
|
|
|
|
content \
|
|
|
|
$(NULL)
|
1999-06-10 22:08:59 +00:00
|
|
|
|
2001-03-29 02:11:48 +00:00
|
|
|
EXPORTS = nsCookieHTTPNotify.h
|
1999-06-10 22:08:59 +00:00
|
|
|
|
2001-03-29 02:11:48 +00:00
|
|
|
XPIDLSRCS= .\nsICookieManager.idl \
|
2002-02-15 03:01:32 +00:00
|
|
|
.\nsICookieConsent.idl \
|
2001-03-29 02:11:48 +00:00
|
|
|
.\nsIImgManager.idl \
|
|
|
|
.\nsIPermissionManager.idl \
|
|
|
|
.\nsICookie.idl \
|
|
|
|
.\nsIPermission.idl \
|
|
|
|
$(NULL)
|
1999-06-10 22:08:59 +00:00
|
|
|
|
|
|
|
CPP_OBJS= \
|
2001-03-29 02:11:48 +00:00
|
|
|
.\$(OBJDIR)\nsModuleFactory.obj \
|
|
|
|
.\$(OBJDIR)\nsCookie.obj \
|
|
|
|
.\$(OBJDIR)\nsPermission.obj \
|
|
|
|
.\$(OBJDIR)\nsCookieManager.obj \
|
1999-06-10 22:08:59 +00:00
|
|
|
.\$(OBJDIR)\nsCookieService.obj \
|
2001-03-29 02:11:48 +00:00
|
|
|
.\$(OBJDIR)\nsImgManager.obj \
|
|
|
|
.\$(OBJDIR)\nsPermissionManager.obj \
|
|
|
|
.\$(OBJDIR)\nsCookies.obj \
|
|
|
|
.\$(OBJDIR)\nsImages.obj \
|
|
|
|
.\$(OBJDIR)\nsPermissions.obj \
|
|
|
|
.\$(OBJDIR)\nsUtils.obj \
|
1999-06-10 22:08:59 +00:00
|
|
|
.\$(OBJDIR)\nsCookieHTTPNotify.obj \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
LINCS = -I$(DEPTH)\include \
|
|
|
|
|
|
|
|
LCFLAGS = \
|
|
|
|
$(LCFLAGS) \
|
|
|
|
$(DEFINES) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# These are the libraries we need to link with to create the dll
|
|
|
|
LLIBS = \
|
|
|
|
$(LIBNSPR) \
|
|
|
|
$(DIST)\lib\js$(MOZ_BITS)$(VERSION_NUMBER).lib \
|
|
|
|
$(DIST)\lib\xpcom.lib \
|
|
|
|
$(HASHLIBS)
|
|
|
|
|
2001-06-14 02:14:19 +00:00
|
|
|
!if !defined(DISABLE_TESTS)
|
2000-08-03 04:57:23 +00:00
|
|
|
DIRS=tests
|
2001-06-14 02:14:19 +00:00
|
|
|
!endif
|
2000-08-03 04:57:23 +00:00
|
|
|
|
1999-06-10 22:08:59 +00:00
|
|
|
include <$(DEPTH)\config\rules.mak>
|
|
|
|
|