Skip to content

Commit

Permalink
Add stubs for the Xcode rules in apple_support, for eventual migratio…
Browse files Browse the repository at this point in the history
…n from Bazel. (#312)

This change only stubs out rules; providers and flags will come later.
The providers in particular need some more thought before locking down
their names, since the current names (like
`apple_common.XcodeVersionConfig`) don't meet Starlark provider naming
conventions.

PiperOrigin-RevId: 612472977
(cherry picked from commit 2177431)

Co-authored-by: Tony Allevato <allevato@google.com>
  • Loading branch information
keith and allevato committed Apr 3, 2024
1 parent cf271a3 commit d59a3e0
Show file tree
Hide file tree
Showing 6 changed files with 136 additions and 0 deletions.
1 change: 1 addition & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ filegroup(
"//platforms:for_bazel_tests",
"//rules:for_bazel_tests",
"//tools:for_bazel_tests",
"//xcode:for_bazel_tests",
],
# Exposed publicly just so other rules can use this if they set up
# integration tests that need to copy all the support files into
Expand Down
39 changes: 39 additions & 0 deletions xcode/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

licenses(["notice"])

package(
default_visibility = ["//visibility:public"],
)

bzl_library(
name = "available_xcodes",
srcs = ["available_xcodes.bzl"],
visibility = ["//visibility:private"],
)

bzl_library(
name = "xcode_config",
srcs = ["xcode_config.bzl"],
visibility = ["//visibility:private"],
)

bzl_library(
name = "xcode_config_alias",
srcs = ["xcode_config_alias.bzl"],
visibility = ["//visibility:private"],
)

bzl_library(
name = "xcode_version",
srcs = ["xcode_version.bzl"],
visibility = ["//visibility:private"],
)

# Consumed by bazel tests.
filegroup(
name = "for_bazel_tests",
testonly = True,
srcs = glob(["**"]),
visibility = ["//:__pkg__"],
)
24 changes: 24 additions & 0 deletions xcode/available_xcodes.bzl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2024 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.

"""Implementation of the `available_xcodes` build rule."""

visibility("public")

def available_xcodes(name, **kwargs):
# TODO: b/311385128 - Migrate the native implementation here.
native.available_xcodes(
name = name,
**kwargs
)
24 changes: 24 additions & 0 deletions xcode/xcode_config.bzl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2024 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.

"""Implementation of the `xcode_config` build rule."""

visibility("public")

def xcode_config(name, **kwargs):
# TODO: b/311385128 - Migrate the native implementation here.
native.xcode_config(
name = name,
**kwargs
)
24 changes: 24 additions & 0 deletions xcode/xcode_config_alias.bzl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2024 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.

"""Implementation of the `xcode_config_alias` build rule."""

visibility("public")

def xcode_config_alias(name, **kwargs):
# TODO: b/311385128 - Migrate the native implementation here.
native.xcode_config_alias(
name = name,
**kwargs
)
24 changes: 24 additions & 0 deletions xcode/xcode_version.bzl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2024 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.

"""Implementation of the `xcode_version` build rule."""

visibility("public")

def xcode_version(name, **kwargs):
# TODO: b/311385128 - Migrate the native implementation here.
native.xcode_version(
name = name,
**kwargs
)

0 comments on commit d59a3e0

Please sign in to comment.