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

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

Issue 2079283002: [iOS/GN] Allow compilation with system clang. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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/config/sanitizers/BUILD.gn ('k') | build/toolchain/toolchain.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain/mac/BUILD.gn
diff --git a/build/toolchain/mac/BUILD.gn b/build/toolchain/mac/BUILD.gn
index ef01cd8f1d463fcb697c640e3b9cdd52ccbf73c6..a58c3b4e67266d1eb7e8952b7b1350aebbd8f2a8 100644
--- a/build/toolchain/mac/BUILD.gn
+++ b/build/toolchain/mac/BUILD.gn
@@ -27,6 +27,13 @@ if (use_goma) {
compiler_prefix = ""
}
+if (use_xcode_clang) {
+ _clang_prefix = ""
+} else {
+ _clang_prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin/",
+ root_build_dir)
+}
+
if (current_toolchain == default_toolchain) {
# Reduce the number of tasks using the copy_bundle_data and compile_xcassets
# tools as they can cause lots of I/O contention when invoking ninja with a
@@ -354,81 +361,71 @@ template("mac_toolchain") {
mac_toolchain("clang_arm") {
toolchain_cpu = "arm"
toolchain_os = "mac"
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
- root_build_dir)
- cc = "${compiler_prefix}$prefix/clang"
- cxx = "${compiler_prefix}$prefix/clang++"
+ cc = "${compiler_prefix}${_clang_prefix}clang"
+ cxx = "${compiler_prefix}${_clang_prefix}clang++"
ld = cxx
is_clang = true
}
-mac_toolchain("ios_clang_arm") {
+mac_toolchain("arm") {
toolchain_cpu = "arm"
toolchain_os = "mac"
-
- # TODO(GYP): We need to support being able to use the version of clang
- # shipped w/ XCode instead of the one pulled from upstream.
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
- root_build_dir)
- cc = "${compiler_prefix}$prefix/clang"
- cxx = "${compiler_prefix}$prefix/clang++"
+ cc = "${compiler_prefix}gcc"
+ cxx = "${compiler_prefix}g++"
ld = cxx
- is_clang = true
+ is_clang = false
}
-mac_toolchain("ios_clang_armv7") {
- toolchain_cpu = "armv7"
+mac_toolchain("clang_x64") {
+ toolchain_cpu = "x64"
toolchain_os = "mac"
-
- # TODO(GYP): We need to support being able to use the version of clang
- # shipped w/ XCode instead of the one pulled from upstream.
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
- root_build_dir)
- cc = "${compiler_prefix}$prefix/clang"
- cxx = "${compiler_prefix}$prefix/clang++"
+ cc = "${compiler_prefix}${_clang_prefix}clang"
+ cxx = "${compiler_prefix}${_clang_prefix}clang++"
ld = cxx
is_clang = true
}
-mac_toolchain("ios_clang_arm64") {
- toolchain_cpu = "arm64"
+mac_toolchain("x64") {
+ toolchain_cpu = "x64"
toolchain_os = "mac"
+ cc = "${compiler_prefix}gcc"
+ cxx = "${compiler_prefix}g++"
+ ld = cxx
+ is_clang = false
+}
- # TODO(GYP): We need to support being able to use the version of clang
- # shipped w/ XCode instead of the one pulled from upstream.
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
- root_build_dir)
- cc = "${compiler_prefix}$prefix/clang"
- cxx = "${compiler_prefix}$prefix/clang++"
+mac_toolchain("ios_clang_arm") {
+ toolchain_cpu = "arm"
+ toolchain_os = "mac"
+ cc = "${compiler_prefix}${_clang_prefix}clang"
+ cxx = "${compiler_prefix}${_clang_prefix}clang++"
ld = cxx
is_clang = true
}
-mac_toolchain("arm") {
- toolchain_cpu = "arm"
+mac_toolchain("ios_clang_arm64") {
+ toolchain_cpu = "arm64"
toolchain_os = "mac"
- cc = "${compiler_prefix}/gcc"
- cxx = "${compiler_prefix}/g++"
+ cc = "${compiler_prefix}${_clang_prefix}clang"
+ cxx = "${compiler_prefix}${_clang_prefix}clang++"
ld = cxx
- is_clang = false
+ is_clang = true
}
-mac_toolchain("clang_x64") {
- toolchain_cpu = "x64"
+mac_toolchain("ios_clang_x86") {
+ toolchain_cpu = "x86"
toolchain_os = "mac"
- prefix = rebase_path("//third_party/llvm-build/Release+Asserts/bin",
- root_build_dir)
- cc = "${compiler_prefix}$prefix/clang"
- cxx = "${compiler_prefix}$prefix/clang++"
+ cc = "${compiler_prefix}${_clang_prefix}clang"
+ cxx = "${compiler_prefix}${_clang_prefix}clang++"
ld = cxx
is_clang = true
}
-mac_toolchain("x64") {
+mac_toolchain("ios_clang_x64") {
toolchain_cpu = "x64"
toolchain_os = "mac"
- cc = "${compiler_prefix}/gcc"
- cxx = "${compiler_prefix}/g++"
+ cc = "${compiler_prefix}${_clang_prefix}clang"
+ cxx = "${compiler_prefix}${_clang_prefix}clang++"
ld = cxx
- is_clang = false
+ is_clang = true
}
« no previous file with comments | « build/config/sanitizers/BUILD.gn ('k') | build/toolchain/toolchain.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698