Bug 1518557 - Enable MOZ_GECKO_PROFILER on Android x86_64. r=mstange

Differential Revision: https://phabricator.services.mozilla.com/D15962

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Nick Alexander 2019-01-08 21:43:48 +00:00
parent 65813684e5
commit 5e1f5eaca7

View File

@ -25,9 +25,9 @@ imply_option('--enable-profiling', jprof)
@depends(target)
def gecko_profiler(target):
if target.os == 'Android':
return target.cpu in ('aarch64', 'arm', 'x86')
return target.cpu in ('aarch64', 'arm', 'x86', 'x86_64')
elif target.kernel == 'Linux':
return target.cpu in ('x86', 'x86_64', 'mips64', 'arm')
return target.cpu in ('aarch64', 'arm', 'x86', 'x86_64', 'mips64')
return target.os in ('OSX', 'WINNT')
@depends(gecko_profiler)