diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-02-23 00:26:22 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-02-23 00:26:22 -0500 |
commit | e9360fae1307575a255bb354efb807eb71e9369a (patch) | |
tree | 5fcaade08d40364eee06df289a4b9d9f8f712c4e /memory/replace/logalloc/moz.build | |
parent | 2896724eaf851ee4b3d6f14eae05dcc626d88cdd (diff) | |
download | uxp-e9360fae1307575a255bb354efb807eb71e9369a.tar.gz |
Issue #1053 - Remove android support from memory
Diffstat (limited to 'memory/replace/logalloc/moz.build')
-rw-r--r-- | memory/replace/logalloc/moz.build | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/memory/replace/logalloc/moz.build b/memory/replace/logalloc/moz.build index e549dca763..7a60a8afa0 100644 --- a/memory/replace/logalloc/moz.build +++ b/memory/replace/logalloc/moz.build @@ -20,22 +20,10 @@ DEFINES['DEBUG'] = False # Use locking code from the chromium stack. if CONFIG['OS_TARGET'] == 'WINNT': - SOURCES += [ - '../../../ipc/chromium/src/base/lock_impl_win.cc', - ] + SOURCES += ['../../../ipc/chromium/src/base/lock_impl_win.cc'] else: - SOURCES += [ - '../../../ipc/chromium/src/base/lock_impl_posix.cc', - ] + SOURCES += ['../../../ipc/chromium/src/base/lock_impl_posix.cc'] include('/ipc/chromium/chromium-config.mozbuild') -# Android doesn't have pthread_atfork, but we have our own in mozglue. -if CONFIG['OS_TARGET'] == 'Android': - USE_LIBS += [ - 'mozglue', - ] - -DIRS += [ - 'replay', -] +DIRS += ['replay'] |