diff options
author | Moonchild <moonchild@palemoon.org> | 2020-04-21 18:09:13 +0000 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-24 10:37:30 +0200 |
commit | 1c3a9a40e5450c2b39f0cea1ffa9143b72931fe9 (patch) | |
tree | 28d3aa81b0d26bf17289e38c208e4b774cbb4f75 /dom/ipc/moz.build | |
parent | 0a33733505b3f3e098769f856adbcee597893518 (diff) | |
download | UXP-1c3a9a40e5450c2b39f0cea1ffa9143b72931fe9.tar UXP-1c3a9a40e5450c2b39f0cea1ffa9143b72931fe9.tar.gz UXP-1c3a9a40e5450c2b39f0cea1ffa9143b72931fe9.tar.lz UXP-1c3a9a40e5450c2b39f0cea1ffa9143b72931fe9.tar.xz UXP-1c3a9a40e5450c2b39f0cea1ffa9143b72931fe9.zip |
Issue #80 - De-unify dom/ipc
Diffstat (limited to 'dom/ipc/moz.build')
-rw-r--r-- | dom/ipc/moz.build | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/dom/ipc/moz.build b/dom/ipc/moz.build index 5629ab2c6..455d0eff7 100644 --- a/dom/ipc/moz.build +++ b/dom/ipc/moz.build @@ -44,11 +44,13 @@ EXPORTS.mozilla += [ 'ProcessPriorityManager.h', ] -UNIFIED_SOURCES += [ +SOURCES += [ 'AppProcessChecker.cpp', + 'Blob.cpp', 'ColorPickerParent.cpp', 'ContentBridgeChild.cpp', 'ContentBridgeParent.cpp', + 'ContentChild.cpp', 'ContentParent.cpp', 'ContentProcess.cpp', 'ContentProcessManager.cpp', @@ -57,6 +59,7 @@ UNIFIED_SOURCES += [ 'nsIContentParent.cpp', 'PermissionMessageUtils.cpp', 'PreallocatedProcessManager.cpp', + 'ProcessHangMonitor.cpp', 'ProcessPriorityManager.cpp', 'ScreenManagerParent.cpp', 'StructuredCloneData.cpp', @@ -66,14 +69,6 @@ UNIFIED_SOURCES += [ 'TabParent.cpp', ] -# Blob.cpp cannot be compiled in unified mode because it triggers a fatal gcc warning. -# ContentChild.cpp cannot be compiled in unified mode on linux due to Time conflict -SOURCES += [ - 'Blob.cpp', - 'ContentChild.cpp', - 'ProcessHangMonitor.cpp', -] - IPDL_SOURCES += [ 'BlobTypes.ipdlh', 'DOMTypes.ipdlh', |