| Index: build/config/sysroot.gni
|
| diff --git a/build/config/sysroot.gni b/build/config/sysroot.gni
|
| index 9080b9bf852ca801ab512e0cb02fe5cfd6b6608a..4d3958a623ad48e227efc1b3275738378a1f397b 100644
|
| --- a/build/config/sysroot.gni
|
| +++ b/build/config/sysroot.gni
|
| @@ -33,6 +33,12 @@ if (is_android) {
|
| # Any other builds don't use a sysroot.
|
| sysroot = ""
|
| }
|
| +} else if (is_linux && !is_chromeos) {
|
| + if (cpu_arch == "mipsel") {
|
| + sysroot = rebase_path("//mipsel-sysroot/sysroot", ".", "")
|
| + } else {
|
| + sysroot = ""
|
| + }
|
| } else if (is_mac) {
|
| import("//build/config/mac/mac_sdk.gni")
|
|
|
|
|