diff options
author | Moonchild <moonchild@palemoon.org> | 2021-10-14 23:35:18 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-04-01 15:22:15 +0200 |
commit | 39f9ab375b2bfd9e46df9695b78870cf1e9cf3c6 (patch) | |
tree | 522ad2b33de883f03a53ffa17e4d74202bcf762a /ipc | |
parent | 28a3cd1028612b3b577768519d11fa6fbcda6f09 (diff) | |
download | uxp-39f9ab375b2bfd9e46df9695b78870cf1e9cf3c6.tar.gz |
Issue #1053 - Remove /dom/system/android and dependent modules,
as well as robocop.
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/chromium/moz.build | 6 | ||||
-rw-r--r-- | ipc/chromium/src/third_party/libeventcommon.mozbuild | 5 | ||||
-rw-r--r-- | ipc/chromium/src/third_party/moz.build | 5 |
3 files changed, 2 insertions, 14 deletions
diff --git a/ipc/chromium/moz.build b/ipc/chromium/moz.build index 92dd3b872a..4050307fe9 100644 --- a/ipc/chromium/moz.build +++ b/ipc/chromium/moz.build @@ -124,12 +124,6 @@ if os_linux: 'src/base/process_util_linux.cc', 'src/base/time_posix.cc', ] - if CONFIG['OS_TARGET'] == 'Android': - UNIFIED_SOURCES += [ - 'src/base/message_pump_android.cc', - ] - DEFINES['ANDROID'] = True - DEFINES['_POSIX_MONOTONIC_CLOCK'] = 0 if os_bsd or os_linux or os_solaris: if 'gtk' in CONFIG['MOZ_WIDGET_TOOLKIT']: diff --git a/ipc/chromium/src/third_party/libeventcommon.mozbuild b/ipc/chromium/src/third_party/libeventcommon.mozbuild index 43749dcc23..dbef7705eb 100644 --- a/ipc/chromium/src/third_party/libeventcommon.mozbuild +++ b/ipc/chromium/src/third_party/libeventcommon.mozbuild @@ -26,10 +26,7 @@ else: libevent_include_suffix = 'solaris' else: os_linux = 1 - if CONFIG['OS_TARGET'] == 'Android': - libevent_include_suffix = 'android' - else: - libevent_include_suffix = 'linux' + libevent_include_suffix = 'linux' if os_posix: DEFINES['HAVE_CONFIG_H'] = True diff --git a/ipc/chromium/src/third_party/moz.build b/ipc/chromium/src/third_party/moz.build index 6435717688..bc4a80ab98 100644 --- a/ipc/chromium/src/third_party/moz.build +++ b/ipc/chromium/src/third_party/moz.build @@ -44,11 +44,8 @@ if os_macosx or os_bsd: if os_linux: SOURCES += [ 'libevent/epoll.c', + 'libevent/epoll_sub.c', ] - if CONFIG['OS_TARGET'] != 'Android': - SOURCES += [ - 'libevent/epoll_sub.c', - ] if os_solaris: SOURCES += [ |