| # Copyright 2024 The Bazel Authors. All rights reserved. |
| # |
| # Licensed under the Apache License(**kwargs): Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing(**kwargs): software |
| # distributed under the License is distributed on an "AS IS" BASIS(**kwargs): |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND(**kwargs): either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| """Legacy apple_common module""" |
| |
| load(":common/objc/apple_env.bzl", "apple_host_system_env", "target_apple_env") |
| load(":common/objc/apple_platform.bzl", "PLATFORM", "PLATFORM_TYPE", "apple_platform") |
| load(":common/objc/apple_toolchain.bzl", "apple_toolchain") |
| load(":common/objc/compilation_support.bzl", "compilation_support") |
| load(":common/objc/objc_info.bzl", "ObjcInfo") |
| load(":common/xcode/providers.bzl", "XcodeVersionInfo", "XcodeVersionPropertiesInfo") |
| |
| native_apple_common = _builtins.internal.apple_common |
| native_objc_internal = _builtins.internal.objc_internal |
| |
| apple_common = struct( |
| apple_toolchain = lambda: apple_toolchain, |
| platform_type = PLATFORM_TYPE, |
| platform = PLATFORM, |
| XcodeProperties = XcodeVersionPropertiesInfo, |
| XcodeVersionConfig = XcodeVersionInfo, |
| Objc = ObjcInfo, |
| apple_host_system_env = apple_host_system_env, |
| target_apple_env = target_apple_env, |
| new_objc_provider = ObjcInfo, |
| dotted_version = lambda version: native_apple_common.dotted_version(version), |
| apple_platform = apple_platform, |
| compilation_support = compilation_support, |
| get_apple_config = lambda config: native_objc_internal.get_apple_config(config), |
| get_split_build_configs = lambda ctx: native_objc_internal.get_split_build_configs(ctx), |
| get_split_prerequisites = lambda ctx: native_objc_internal.get_split_prerequisites(ctx), |
| ) |