Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1723)

Unified Diff: build/config/sysroot.gni

Issue 2361223002: Update linux sysroot images from debian/wheezy to debian/jessie (Closed)
Patch Set: . Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/config/sysroot.gni
diff --git a/build/config/sysroot.gni b/build/config/sysroot.gni
index 7fed8b3ee238a807611c9580fd51d53e7600bd06..5ea877752a790f7056c7493c10c8ace62a6092bc 100644
--- a/build/config/sysroot.gni
+++ b/build/config/sysroot.gni
@@ -53,16 +53,18 @@ if (is_linux && target_sysroot_dir != "") {
# 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.
+ # TODO(sbc): This condition can perhaps be eliminated now that we are
+ # using jessie rather than wheezy.
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 {
« no previous file with comments | « no previous file | build/linux/sysroot_scripts/install-sysroot.py » ('j') | build/linux/sysroot_scripts/install-sysroot.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698