Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More removing of explicit repo names #2503

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

erikkerber
Copy link
Contributor

No description provided.

Signed-off-by: Erik Kerber <[email protected]>
@@ -179,7 +179,7 @@ local_provisioning_profile = rule(
),
"_finder": attr.label(
cfg = "exec",
default = "@build_bazel_rules_apple//tools/local_provisioning_profile_finder",
default = "//tools/local_provisioning_profile_finder",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will this one will need to be wrapped in Label()? I forget if this is resolved immediately (in this repo) or not.

Since it's best practice, let's wrap it. Same for all of the "Same" comments after this.

@@ -186,7 +186,7 @@ macos_binary_infoplist = rule(
),
"_environment_plist": attr.label(
allow_single_file = True,
default = "@build_bazel_rules_apple//apple/internal:environment_plist_macos",
default = "//apple/internal:environment_plist_macos",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same

@@ -59,7 +59,7 @@ def generate_app_intents_metadata_bundle(

args.add("--binary-file", bundle_binary)

if len(intents_module_names) > 1:
if len(intents_module_names) > 3:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this change?

@@ -121,7 +121,7 @@ def _cc_toolchain_forwarder_attrs(*, deps_cfg):
cfg = deps_cfg,
providers = [cc_common.CcToolchainInfo, ApplePlatformInfo],
default =
"@build_bazel_rules_apple//apple:default_cc_toolchain_forwarder",
"//apple:default_cc_toolchain_forwarder",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same

@@ -144,7 +144,7 @@ def _common_linking_api_attrs(*, deps_cfg):
cfg = deps_cfg,
providers = [cc_common.CcToolchainInfo, ApplePlatformInfo],
default =
"@build_bazel_rules_apple//apple:default_cc_toolchain_forwarder",
"//apple:default_cc_toolchain_forwarder",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same

@@ -350,7 +350,7 @@ def apple_symbols_file_test(
},
target_under_test = target_under_test,
apple_generate_dsym = True,
verifier_script = "@build_bazel_rules_apple//test/starlark_tests:verifier_scripts/apple_symbols_file_verifier.sh",
verifier_script = "//test/starlark_tests:verifier_scripts/apple_symbols_file_verifier.sh",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same

@@ -378,6 +378,6 @@ def entry_point_test(
"ENTRY_POINT": [entry_point],
},
target_under_test = target_under_test,
verifier_script = "@build_bazel_rules_apple//test/starlark_tests:verifier_scripts/entry_point_verifier.sh",
verifier_script = "//test/starlark_tests:verifier_scripts/entry_point_verifier.sh",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same

@@ -201,14 +201,14 @@ Minimum version of the OS corresponding to the SDK that this binary will support
"src": attr.label(
allow_single_file = True,
default = Label(
"@build_bazel_rules_apple//test/starlark_tests/resources/frameworks:SharedClass.m",
"//test/starlark_tests/resources/frameworks:SharedClass.m",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same

),
doc = "Source file for the generated framework.",
),
"hdrs": attr.label(
allow_files = True,
default = Label(
"@build_bazel_rules_apple//test/starlark_tests/resources/frameworks:SharedClass.h",
"//test/starlark_tests/resources/frameworks:SharedClass.h",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same

@@ -119,7 +119,7 @@ are expected to **not** be found somewhere in that file.
doc = "The target whose outputs are to be verified.",
),
"_test_deps": attr.label(
default = "@build_bazel_rules_apple//test:apple_verification_test_deps",
default = "//test:apple_verification_test_deps",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same

@brentleyjones
Copy link
Collaborator

Friendly ping

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants