| Index: tools/gn.py
|
| diff --git a/tools/gn.py b/tools/gn.py
|
| index 32884b072f9b151685e5a5da622fb4f02f13608f..5972295692541c14a777e130559c371e80c27466 100755
|
| --- a/tools/gn.py
|
| +++ b/tools/gn.py
|
| @@ -170,6 +170,8 @@ def ToGnArgs(args, mode, arch, target_os):
|
| # a clang-based sanitizer is specified.
|
| has_clang = (host_os != 'win'
|
| and not gn_args['target_cpu'].startswith('mips')
|
| + and not ((gn_args['target_os'] == 'linux') and
|
| + (gn_args['target_cpu'] == 'arm64'))
|
| and not ((gn_args['target_os'] == 'linux')
|
| and (gn_args['host_cpu'] == 'x86')
|
| and not args.asan
|
|
|