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

Unified Diff: build/toolchain/linux/BUILD.gn

Issue 951673002: Revert "Pull chromium at 2c3ffb2355a27c32f45e508ef861416b820c823b" (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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/toolchain/gcc_toolchain.gni ('k') | build/toolchain/mac/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain/linux/BUILD.gn
diff --git a/build/toolchain/linux/BUILD.gn b/build/toolchain/linux/BUILD.gn
index 7bcd9d01170e5a5a86d53e4fd69ef78eccae712c..1d17772222f0bea73dc3a8601ed3b512a7f63dc3 100644
--- a/build/toolchain/linux/BUILD.gn
+++ b/build/toolchain/linux/BUILD.gn
@@ -24,7 +24,7 @@ gcc_toolchain("arm") {
ar = "arm-linux-gnueabi-ar"
ld = cxx
- toolchain_cpu = "arm"
+ toolchain_cpu_arch = "arm"
toolchain_os = "linux"
is_clang = false
}
@@ -43,7 +43,7 @@ gcc_toolchain("clang_x86") {
ar = "ar"
ld = cxx
- toolchain_cpu = "x86"
+ toolchain_cpu_arch = "x86"
toolchain_os = "linux"
is_clang = true
}
@@ -55,7 +55,7 @@ gcc_toolchain("x86") {
ar = "ar"
ld = cxx
- toolchain_cpu = "x86"
+ toolchain_cpu_arch = "x86"
toolchain_os = "linux"
is_clang = false
}
@@ -74,7 +74,7 @@ gcc_toolchain("clang_x64") {
ar = "ar"
ld = cxx
- toolchain_cpu = "x64"
+ toolchain_cpu_arch = "x64"
toolchain_os = "linux"
is_clang = true
}
@@ -86,7 +86,7 @@ gcc_toolchain("x64") {
ar = "ar"
ld = cxx
- toolchain_cpu = "x64"
+ toolchain_cpu_arch = "x64"
toolchain_os = "linux"
is_clang = false
}
@@ -97,7 +97,7 @@ gcc_toolchain("mipsel") {
ar = "mipsel-linux-gnu-ar"
ld = cxx
- toolchain_cpu = "mipsel"
+ toolchain_cpu_arch = "mipsel"
toolchain_os = "linux"
is_clang = false
}
« no previous file with comments | « build/toolchain/gcc_toolchain.gni ('k') | build/toolchain/mac/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698