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

Unified Diff: build/config/sysroot.gni

Issue 1141003002: Move linux sysroots from chrome/installer/linux to build/linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 months 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
« no previous file with comments | « build/common.gypi ('k') | build/linux/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/sysroot.gni
diff --git a/build/config/sysroot.gni b/build/config/sysroot.gni
index e5a9c2b20a1a2d87d8e5a3ca66b2e11ef1a5bc59..ffd8921f859a67ac12e56bbf119dfae55b3e563e 100644
--- a/build/config/sysroot.gni
+++ b/build/config/sysroot.gni
@@ -36,10 +36,9 @@ if (current_toolchain == default_toolchain && target_sysroot != "") {
# For official builds, use the sysroot checked into the internal source repo
# so that the builds work on older versions of Linux.
if (current_cpu == "x64") {
- sysroot =
- rebase_path("//chrome/installer/linux/debian_wheezy_amd64-sysroot")
+ sysroot = rebase_path("//build/linux/debian_wheezy_amd64-sysroot")
} else if (current_cpu == "x86") {
- sysroot = rebase_path("//chrome/installer/linux/debian_wheezy_i386-sysroot")
+ sysroot = rebase_path("//build/linux/debian_wheezy_i386-sysroot")
} else {
# Any other builds don't use a sysroot.
sysroot = ""
« no previous file with comments | « build/common.gypi ('k') | build/linux/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698