moz.build (1158B)
1 # -*- Mode: python; 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/. 6 7 UNIFIED_SOURCES += [ 8 "GeckoViewContentChannel.cpp", 9 "GeckoViewContentChannelChild.cpp", 10 "GeckoViewContentChannelParent.cpp", 11 "GeckoViewContentProtocolHandler.cpp", 12 "GeckoViewExternalAppService.cpp", 13 "GeckoViewInputStream.cpp", 14 "GeckoViewOutputStream.cpp", 15 "GeckoViewStreamListener.cpp", 16 ] 17 18 EXPORTS += [ 19 "GeckoViewContentChannel.h", 20 "GeckoViewContentProtocolHandler.h", 21 "GeckoViewExternalAppService.h", 22 "GeckoViewInputStream.h", 23 "GeckoViewOutputStream.h", 24 "GeckoViewStreamListener.h", 25 ] 26 27 EXPORTS.mozilla.net += [ 28 "GeckoViewContentChannelChild.h", 29 "GeckoViewContentChannelParent.h", 30 ] 31 32 IPDL_SOURCES = [ 33 "PGeckoViewContentChannel.ipdl", 34 ] 35 36 LOCAL_INCLUDES += [ 37 "/netwerk/base", 38 ] 39 40 include("/ipc/chromium/chromium-config.mozbuild") 41 42 XPCOM_MANIFESTS += [ 43 "components.conf", 44 ] 45 46 FINAL_LIBRARY = "xul"