Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions apple/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ bzl_library(
],
)

bzl_library(
name = "apple_archive",
srcs = ["apple_archive.bzl"],
deps = [
"//apple/internal:apple_archive",
],
)

bzl_library(
name = "aspects",
srcs = ["aspects.bzl"],
Expand Down
24 changes: 24 additions & 0 deletions apple/apple_archive.bzl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2025 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, 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, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""
Rules for creating iOS Package Archive (.ipa).
"""

load(
"//apple/internal:apple_archive.bzl",
_apple_archive = "apple_archive",
)

apple_archive = _apple_archive
18 changes: 18 additions & 0 deletions apple/internal/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,24 @@ bzl_library(
],
)

bzl_library(
name = "apple_archive",
srcs = ["apple_archive.bzl"],
visibility = [
"//apple:__subpackages__",
],
deps = [
":apple_toolchains",
":providers",
"//apple:providers",
"//apple/internal/providers:apple_messages_stub_info",
"//apple/internal/providers:apple_swift_dylibs_info",
"//apple/internal/providers:apple_symbols_file_info",
"//apple/internal/providers:apple_watchos_stub_info",
"//apple/internal/utils:defines",
],
)

bzl_library(
name = "apple_universal_binary",
srcs = ["apple_universal_binary.bzl"],
Expand Down
Loading