Tue, 06 Jan 2015 21:39:09 +0100
Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.
1 # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 UNIFIED_SOURCES += [
8 'ev_streams.c',
9 'ev_timers.c',
10 'getaddrinfo.c',
11 'ns_name.c',
12 'ns_netint.c',
13 'ns_parse.c',
14 'ns_samedomain.c',
15 'ns_ttl.c',
16 'res_comp.c',
17 'res_data.c',
18 'res_init.c',
19 'res_send.c',
20 ]
22 # These files can't be unified because of conflicting global variable names.
23 SOURCES += [
24 'ns_print.c',
25 'res_debug.c',
26 'res_mkquery.c',
27 'res_state.c',
28 ]
30 FINAL_LIBRARY = 'mozglue'