Index: build/config/sysroot.gni |
diff --git a/build/config/sysroot.gni b/build/config/sysroot.gni |
index 7fed8b3ee238a807611c9580fd51d53e7600bd06..f51e4b878dcf690a16978e51e6dee355e68d8109 100644 |
--- a/build/config/sysroot.gni |
+++ b/build/config/sysroot.gni |
@@ -20,9 +20,9 @@ declare_args() { |
if (is_linux && target_sysroot_dir != "") { |
if (current_cpu == "x64") { |
- sysroot = target_sysroot_dir + "/wheezy-x64" |
+ sysroot = target_sysroot_dir + "/jessie-x64" |
} else if (current_cpu == "x86") { |
- sysroot = target_sysroot_dir + "/wheezy-ia32" |
+ sysroot = target_sysroot_dir + "/jessie-ia32" |
} |
} else if (current_os == target_os && current_cpu == target_cpu && |
target_sysroot != "") { |
@@ -52,17 +52,17 @@ if (is_linux && target_sysroot_dir != "") { |
# we're building linux desktop binaries but using the ChromeOS UI and |
# functionality where possible) needs to run on the buliders, which are |
# running precise. The precise build has a different set of dependencies |
- # from the wheezy build, so we cannot use the wheezy sysroot. |
+ # from the jessie build, so we cannot use the jessie sysroot. |
sysroot = "//build/linux/ubuntu_precise_amd64-sysroot" |
} else { |
if (current_cpu == "x64") { |
- sysroot = "//build/linux/debian_wheezy_amd64-sysroot" |
+ sysroot = "//build/linux/debian_jessie_amd64-sysroot" |
} else if (current_cpu == "x86") { |
- sysroot = "//build/linux/debian_wheezy_i386-sysroot" |
+ sysroot = "//build/linux/debian_jessie_i386-sysroot" |
} else if (current_cpu == "mipsel") { |
- sysroot = "//build/linux/debian_wheezy_mips-sysroot" |
+ sysroot = "//build/linux/debian_jessie_mips-sysroot" |
} else if (current_cpu == "arm") { |
- sysroot = "//build/linux/debian_wheezy_arm-sysroot" |
+ sysroot = "//build/linux/debian_jessie_arm-sysroot" |
} else if (current_cpu == "arm64") { |
sysroot = "//build/linux/debian_jessie_arm64-sysroot" |
} else { |