Skip to content

Commit

Permalink
Make binary targets public
Browse files Browse the repository at this point in the history
  • Loading branch information
thii committed Apr 23, 2021
1 parent d883d4c commit 48ced2c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
1 change: 1 addition & 0 deletions Libraries/acdriver/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ cc_library(
cc_binary(
name = "actool",
srcs = ["Tools/actool.cpp"],
visibility = ["//visibility:public"],
deps = [":acdriver"],
)
7 changes: 6 additions & 1 deletion Libraries/plist/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,17 @@ cc_library(
cc_binary(
name = "PlistBuddy",
srcs = ["Tools/PlistBuddy.cpp"],
deps = [":plist", "@linenoise"],
copts = ["-DHAVE_LINENOISE"],
visibility = ["//visibility:public"],
deps = [
":plist",
"@linenoise",
],
)

cc_binary(
name = "plutil",
srcs = ["Tools/plutil.cpp"],
visibility = ["//visibility:public"],
deps = [":plist"],
)
7 changes: 3 additions & 4 deletions Libraries/xcsdk/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@ cc_library(
cc_binary(
name = "xcode-select",
srcs = ["Tools/xcode-select.cpp"],
deps = [
":xcsdk",
"@zlib",
],
visibility = ["//visibility:public"],
deps = [":xcsdk"],
)

cc_binary(
name = "xcrun",
srcs = ["Tools/xcrun.cpp"],
visibility = ["//visibility:public"],
deps = [":xcsdk"],
)
6 changes: 5 additions & 1 deletion Libraries/xcworkspace/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,9 @@ cc_library(
cc_binary(
name = "dump_xcworkspace",
srcs = ["Tools/dump_xcworkspace.cpp"],
deps = [":xcworkspace", "//Libraries/xcscheme", "//Libraries/pbxproj"],
deps = [
":xcworkspace",
"//Libraries/pbxproj",
"//Libraries/xcscheme",
],
)

0 comments on commit 48ced2c

Please sign in to comment.