Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | ## Makefile.in for ICU tools |
michael@0 | 2 | ## Copyright (c) 1999-2012, International Business Machines Corporation and |
michael@0 | 3 | ## others. All Rights Reserved. |
michael@0 | 4 | |
michael@0 | 5 | ## Source directory information |
michael@0 | 6 | srcdir = @srcdir@ |
michael@0 | 7 | top_srcdir = @top_srcdir@ |
michael@0 | 8 | |
michael@0 | 9 | top_builddir = .. |
michael@0 | 10 | |
michael@0 | 11 | include $(top_builddir)/icudefs.mk |
michael@0 | 12 | |
michael@0 | 13 | ## Build directory information |
michael@0 | 14 | subdir = tools |
michael@0 | 15 | |
michael@0 | 16 | SUBDIRS = toolutil ctestfw makeconv genrb genbrk \ |
michael@0 | 17 | gencnval gensprep icuinfo genccode gencmn icupkg pkgdata \ |
michael@0 | 18 | gentest gennorm2 gencfu gendict |
michael@0 | 19 | |
michael@0 | 20 | ## List of phony targets |
michael@0 | 21 | .PHONY : all all-local all-recursive install install-local \ |
michael@0 | 22 | install-recursive clean clean-local clean-recursive distclean \ |
michael@0 | 23 | distclean-local distclean-recursive dist dist-local dist-recursive \ |
michael@0 | 24 | check check-local check-recursive build-local check-exhaustive |
michael@0 | 25 | |
michael@0 | 26 | ## Clear suffix list |
michael@0 | 27 | .SUFFIXES : |
michael@0 | 28 | |
michael@0 | 29 | ## List of standard targets |
michael@0 | 30 | all: all-recursive |
michael@0 | 31 | install: install-recursive |
michael@0 | 32 | clean: clean-local clean-recursive |
michael@0 | 33 | distclean : distclean-recursive |
michael@0 | 34 | dist: dist-recursive |
michael@0 | 35 | check: all check-recursive |
michael@0 | 36 | |
michael@0 | 37 | check-exhaustive: check |
michael@0 | 38 | |
michael@0 | 39 | ## Recursive targets |
michael@0 | 40 | all-recursive install-recursive clean-recursive distclean-recursive dist-recursive check-recursive: |
michael@0 | 41 | @dot_seen=no; \ |
michael@0 | 42 | target=`echo $@ | sed s/-recursive//`; \ |
michael@0 | 43 | list='$(SUBDIRS)'; for subdir in $$list; do \ |
michael@0 | 44 | echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \ |
michael@0 | 45 | if test "$$subdir" = "."; then \ |
michael@0 | 46 | dot_seen=yes; \ |
michael@0 | 47 | local_target="$$target-local"; \ |
michael@0 | 48 | else \ |
michael@0 | 49 | local_target="$$target"; \ |
michael@0 | 50 | fi; \ |
michael@0 | 51 | (cd $$subdir && $(MAKE) $$local_target) || exit; \ |
michael@0 | 52 | done; \ |
michael@0 | 53 | if test "$$dot_seen" = "no"; then \ |
michael@0 | 54 | $(MAKE) "$$target-local" || exit; \ |
michael@0 | 55 | fi |
michael@0 | 56 | |
michael@0 | 57 | all-local: build-local |
michael@0 | 58 | |
michael@0 | 59 | |
michael@0 | 60 | ## Files to remove for 'make clean' |
michael@0 | 61 | CLEANFILES = *~ |
michael@0 | 62 | |
michael@0 | 63 | install-local: |
michael@0 | 64 | |
michael@0 | 65 | dist-local: |
michael@0 | 66 | |
michael@0 | 67 | clean-local: |
michael@0 | 68 | test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) |
michael@0 | 69 | |
michael@0 | 70 | # Clean up any old variations.. |
michael@0 | 71 | distclean-local: clean-local |
michael@0 | 72 | $(RMV) Makefile |
michael@0 | 73 | |
michael@0 | 74 | build-local: |
michael@0 | 75 | |
michael@0 | 76 | check-local: |
michael@0 | 77 | |
michael@0 | 78 | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
michael@0 | 79 | cd $(top_builddir) \ |
michael@0 | 80 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status |
michael@0 | 81 |