summaryrefslogtreecommitdiffstats
path: root/ipc/glue/moz.build
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/glue/moz.build')
-rw-r--r--ipc/glue/moz.build12
1 files changed, 11 insertions, 1 deletions
diff --git a/ipc/glue/moz.build b/ipc/glue/moz.build
index 7aa29612b8..f5bf67f777 100644
--- a/ipc/glue/moz.build
+++ b/ipc/glue/moz.build
@@ -153,6 +153,14 @@ if CONFIG["OS_ARCH"] != "WINNT":
"FileDescriptorShuffle.cpp",
]
+if CONFIG["TARGET_OS"] == "iOS":
+ EXPORTS.mozilla.ipc += [
+ "ExtensionKitUtils.h",
+ ]
+ UNIFIED_SOURCES += [
+ "ExtensionKitUtils.mm",
+ ]
+
EXPORTS.ipc += [
"EnumSerializer.h",
"IPCMessageUtils.h",
@@ -284,8 +292,10 @@ include("/ipc/chromium/chromium-config.mozbuild")
FINAL_LIBRARY = "xul"
-if CONFIG["OS_ARCH"] == "Darwin":
+if CONFIG["TARGET_OS"] == "OSX":
OS_LIBS += ["bsm"] # for audit_token_to_pid
+elif CONFIG["TARGET_OS"] == "iOS":
+ OS_LIBS += ["-framework BrowserEngineKit"]
for var in (
"MOZ_CHILD_PROCESS_NAME",