67 lines
1.5 KiB
Plaintext
67 lines
1.5 KiB
Plaintext
# Copyright 2021 The Chromium Authors
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//build/config/ios/ios_sdk.gni")
|
|
import("//build/toolchain/apple/toolchain.gni")
|
|
|
|
# Specialisation of the apple_toolchain template to declare the toolchain
|
|
# and its tools to build target for iOS platform.
|
|
template("ios_toolchain") {
|
|
assert(defined(invoker.toolchain_args),
|
|
"Toolchains must declare toolchain_args")
|
|
|
|
apple_toolchain(target_name) {
|
|
forward_variables_from(invoker, "*", [ "toolchain_args" ])
|
|
|
|
sdk_developer_dir = ios_sdk_developer_dir
|
|
deployment_target = ios_deployment_target
|
|
target_environment = target_environment
|
|
bin_path = ios_bin_path
|
|
|
|
toolchain_args = {
|
|
forward_variables_from(invoker.toolchain_args, "*")
|
|
xcode_build = xcode_build
|
|
current_os = "ios"
|
|
}
|
|
}
|
|
}
|
|
|
|
ios_toolchain("ios_clang_arm64") {
|
|
toolchain_args = {
|
|
current_cpu = "arm64"
|
|
}
|
|
}
|
|
|
|
ios_toolchain("ios_clang_arm64_13_4") {
|
|
toolchain_args = {
|
|
current_cpu = "arm64"
|
|
ios_deployment_target = "13.4"
|
|
}
|
|
}
|
|
|
|
ios_toolchain("ios_clang_arm") {
|
|
toolchain_args = {
|
|
current_cpu = "arm"
|
|
}
|
|
}
|
|
|
|
ios_toolchain("ios_clang_x64") {
|
|
toolchain_args = {
|
|
current_cpu = "x64"
|
|
}
|
|
}
|
|
|
|
ios_toolchain("ios_clang_x64_13_4") {
|
|
toolchain_args = {
|
|
current_cpu = "x64"
|
|
ios_deployment_target = "13.4"
|
|
}
|
|
}
|
|
|
|
ios_toolchain("ios_clang_x86") {
|
|
toolchain_args = {
|
|
current_cpu = "x86"
|
|
}
|
|
}
|