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 ['target_arch=="arm" or target_arch=="ia32" or target_arch=="mipsel"', { | |
11 'arch_suffix': '32', | |
12 }, { | |
13 'arch_suffix': '64', | |
14 }], | |
15 ], | |
16 } | |
17 } | |
18 } | |
OLD | NEW |