OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 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 # MIPS arch variant. | |
6 if (cpu_arch == "mipsel") { | |
7 declare_args() { | |
brettw
2015/01/12 07:27:02
Will anybody actually need to set the arch variant
wtc
2015/01/12 22:53:49
Henrik: does the WebRTC team need to set mips_arch
petarj
2015/01/14 15:08:55
We actually use this often.
Being able to build Ch
| |
8 mips_arch_variant = "r1" | |
Ben Chan
2015/01/20 23:36:34
this definition differs from the one in webrtc.gni
wtc
2015/01/21 01:58:50
Yes. This Chromium CL requires a companion WebRTC
| |
9 } | |
10 } | |
11 if (cpu_arch == "mips64el") { | |
brettw
2015/01/20 23:34:26
Can you make this an "else if"
wtc
2015/01/21 01:58:50
Done.
| |
12 if (is_android) { | |
13 declare_args() { | |
14 mips_arch_variant = "r6" | |
15 } | |
16 } else { | |
17 declare_args() { | |
18 mips_arch_variant = "r2" | |
19 } | |
20 } | |
21 } | |
OLD | NEW |