moz.build (1185B)
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 EXPORTS.mozilla.dom += [ 8 "JSActor.h", 9 "JSActorManager.h", 10 "JSActorService.h", 11 "JSActorTypeUtils.h", 12 "JSIPCValueUtils.h", 13 "JSProcessActorChild.h", 14 "JSProcessActorParent.h", 15 "JSProcessActorProtocol.h", 16 "JSWindowActorChild.h", 17 "JSWindowActorParent.h", 18 "JSWindowActorProtocol.h", 19 ] 20 21 EXPORTS += [ 22 "nsQueryActor.h", 23 ] 24 25 UNIFIED_SOURCES += [ 26 "JSActor.cpp", 27 "JSActorManager.cpp", 28 "JSActorService.cpp", 29 "JSActorTypeUtils.cpp", 30 "JSIPCValueUtils.cpp", 31 "JSProcessActorChild.cpp", 32 "JSProcessActorParent.cpp", 33 "JSProcessActorProtocol.cpp", 34 "JSWindowActorChild.cpp", 35 "JSWindowActorParent.cpp", 36 "JSWindowActorProtocol.cpp", 37 ] 38 39 LOCAL_INCLUDES += [ 40 "/js/xpconnect/loader", 41 "/js/xpconnect/src", 42 ] 43 44 IPDL_SOURCES += [ 45 "JSIPCValue.ipdlh", 46 ] 47 48 include("/ipc/chromium/chromium-config.mozbuild") 49 50 FINAL_LIBRARY = "xul"