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

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

Issue 2858873005: [infra] Roll clang to match the version used by Flutter (Closed)
Patch Set: Fix Mac Android build Created 3 years, 7 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
Index: build/toolchain/mac/BUILD.gn
diff --git a/build/toolchain/mac/BUILD.gn b/build/toolchain/mac/BUILD.gn
index b291f0050b6aef381afce0d9d1490dec2e819ef2..811ab467f879afbaa0cd5f2935c3291d5578abd8 100644
--- a/build/toolchain/mac/BUILD.gn
+++ b/build/toolchain/mac/BUILD.gn
@@ -211,7 +211,7 @@ template("mac_toolchain") {
mac_toolchain("clang_x64") {
toolchain_cpu = "x64"
toolchain_os = "mac"
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
+ prefix = rebase_path("//buildtools/toolchain/clang+llvm-x86_64-darwin/bin",
root_build_dir)
cc = "${goma_prefix}$prefix/clang"
cxx = "${goma_prefix}$prefix/clang++"
@@ -221,10 +221,10 @@ mac_toolchain("clang_x64") {
}
# Toolchain used for Mac host (i386) targets.
-mac_toolchain("clang_i386") {
+mac_toolchain("clang_x86") {
toolchain_cpu = "i386"
toolchain_os = "mac"
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
+ prefix = rebase_path("//buildtools/toolchain/clang+llvm-x86_64-darwin/bin",
root_build_dir)
cc = "${goma_prefix}$prefix/clang"
cxx = "${goma_prefix}$prefix/clang++"

Powered by Google App Engine
This is Rietveld 408576698