Skip to content

Commit

Permalink
Add xcschemes Starlark integration
Browse files Browse the repository at this point in the history
Signed-off-by: Brentley Jones <[email protected]>
  • Loading branch information
brentleyjones committed Nov 2, 2023
1 parent 7f32474 commit 39205cb
Show file tree
Hide file tree
Showing 11 changed files with 5,878 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ test_suite(
"//test/internal/target_id",
"//test/internal/targets",
"//test/internal/xcode_schemes",
"//test/internal/xcschemes",
],
)

Expand All @@ -30,6 +31,7 @@ bzl_library(
"//test/internal/target_id:bzls",
"//test/internal/targets:bzls",
"//test/internal/xcode_schemes:bzls",
"//test/internal/xcschemes:bzls",
],
)

Expand Down
26 changes: 26 additions & 0 deletions test/internal/xcschemes/BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
load(":info_constructors_tests.bzl", "info_constructors_test_suite")
load(":infos_from_json_tests.bzl", "infos_from_json_test_suite")
load(":write_schemes_tests.bzl", "write_schemes_test_suite")

info_constructors_test_suite(name = "info_constructors")

infos_from_json_test_suite(name = "infos_from_json")

write_schemes_test_suite(name = "write_schemes")

test_suite(name = "xcschemes")

bzl_library(
name = "bzls",
srcs = glob(
["*.bzl"],
exclude = ["utils.bzl"],
),
visibility = ["//test:__pkg__"],
)

bzl_library(
name = "utils",
srcs = ["utils.bzl"],
)
Loading

0 comments on commit 39205cb

Please sign in to comment.