Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
michael@0 | 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | EXPORTS.mozilla.dom.network += [ |
michael@0 | 8 | 'Connection.h', |
michael@0 | 9 | 'Constants.h', |
michael@0 | 10 | 'TCPServerSocketChild.h', |
michael@0 | 11 | 'TCPServerSocketParent.h', |
michael@0 | 12 | 'TCPSocketChild.h', |
michael@0 | 13 | 'TCPSocketParent.h', |
michael@0 | 14 | 'Types.h', |
michael@0 | 15 | 'UDPSocketChild.h', |
michael@0 | 16 | 'UDPSocketParent.h', |
michael@0 | 17 | ] |
michael@0 | 18 | |
michael@0 | 19 | UNIFIED_SOURCES += [ |
michael@0 | 20 | 'Connection.cpp', |
michael@0 | 21 | 'TCPServerSocketChild.cpp', |
michael@0 | 22 | 'TCPServerSocketParent.cpp', |
michael@0 | 23 | 'TCPSocketChild.cpp', |
michael@0 | 24 | 'TCPSocketParent.cpp', |
michael@0 | 25 | 'UDPSocketChild.cpp', |
michael@0 | 26 | 'UDPSocketParent.cpp', |
michael@0 | 27 | ] |
michael@0 | 28 | |
michael@0 | 29 | if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk': |
michael@0 | 30 | EXTRA_JS_MODULES = [ |
michael@0 | 31 | 'NetworkStatsDB.jsm', |
michael@0 | 32 | 'NetworkStatsService.jsm', |
michael@0 | 33 | ] |
michael@0 | 34 | |
michael@0 | 35 | EXTRA_COMPONENTS += [ |
michael@0 | 36 | 'TCPServerSocket.js', |
michael@0 | 37 | 'TCPSocket.manifest', |
michael@0 | 38 | 'TCPSocketParentIntermediary.js', |
michael@0 | 39 | ] |
michael@0 | 40 | |
michael@0 | 41 | EXTRA_PP_COMPONENTS += [ |
michael@0 | 42 | 'TCPSocket.js', |
michael@0 | 43 | ] |
michael@0 | 44 | |
michael@0 | 45 | if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gonk': |
michael@0 | 46 | EXTRA_COMPONENTS += [ |
michael@0 | 47 | 'NetworkStatsManager.js', |
michael@0 | 48 | 'NetworkStatsManager.manifest', |
michael@0 | 49 | 'NetworkStatsServiceProxy.js', |
michael@0 | 50 | 'NetworkStatsServiceProxy.manifest', |
michael@0 | 51 | ] |
michael@0 | 52 | EXPORTS.mozilla.dom.network += [ |
michael@0 | 53 | 'NetUtils.h', |
michael@0 | 54 | ] |
michael@0 | 55 | UNIFIED_SOURCES += [ |
michael@0 | 56 | 'NetUtils.cpp', |
michael@0 | 57 | ] |
michael@0 | 58 | |
michael@0 | 59 | IPDL_SOURCES += [ |
michael@0 | 60 | 'PTCPServerSocket.ipdl', |
michael@0 | 61 | 'PTCPSocket.ipdl', |
michael@0 | 62 | 'PUDPSocket.ipdl', |
michael@0 | 63 | ] |
michael@0 | 64 | |
michael@0 | 65 | FAIL_ON_WARNINGS = True |
michael@0 | 66 | |
michael@0 | 67 | include('/ipc/chromium/chromium-config.mozbuild') |
michael@0 | 68 | |
michael@0 | 69 | FINAL_LIBRARY = 'gklayout' |