21 строка
460 B
Plaintext
21 строка
460 B
Plaintext
# Copyright 2015 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# MIPS arch variant.
|
|
if (current_cpu == "mipsel") {
|
|
declare_args() {
|
|
mips_arch_variant = "r1"
|
|
}
|
|
} else if (current_cpu == "mips64el") {
|
|
if (is_android) {
|
|
declare_args() {
|
|
mips_arch_variant = "r6"
|
|
}
|
|
} else {
|
|
declare_args() {
|
|
mips_arch_variant = "r2"
|
|
}
|
|
}
|
|
}
|