OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'arch_suffix': '<(arch_suffix)', | |
8 'variables': { | |
9 'conditions': [ | |
10 ['OS=="android" and (target_arch=="arm" or target_arch=="ia32" or target _arch=="mipsel")', { | |
jbudorick
2015/10/19 22:57:23
What's your reasoning for doing this as two separa
michaelbai
2015/10/20 00:10:10
This code was copied, it might useful when target_
| |
11 'arch_suffix': '32', | |
12 }], | |
13 ['OS=="android" and (target_arch=="arm64" or target_arch=="x64" or targe t_arch=="mips64el")', { | |
14 'arch_suffix': '64', | |
15 }], | |
16 ], | |
17 } | |
18 } | |
19 } | |
OLD | NEW |