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.
1 $(shell \
2 mkdir foo; \
3 touch a.c b.c c.out foo/d.c; \
4 sleep 2; \
5 touch c.in; \
6 )
8 VPATH = foo
10 all: c.out prog
11 cat $<
12 test "$$(cat $<)" = "remadec.out"
13 @echo TEST-PASS
15 *.out: %.out: %.in
16 test "$@" = c.out
17 test "$<" = c.in
18 printf "remade$@" >$@
20 prog: *.c
21 test "$^" = "a.c b.c"
22 touch $@