diff --git a/android/ndk_repository.bzl b/android/ndk_repository.bzl index 14995b803..d8c64dd8b 100644 --- a/android/ndk_repository.bzl +++ b/android/ndk_repository.bzl @@ -14,8 +14,6 @@ """Bazel rule for Android ndk repository.""" -load(":migration_tag_DONOTUSE.bzl", _add_migration_tag = "add_migration_tag") - def android_ndk_repository(**attrs): """Bazel android_ndk_repository rule. @@ -24,4 +22,4 @@ def android_ndk_repository(**attrs): Args: **attrs: Rule attributes """ - native.android_ndk_repository(**_add_migration_tag(attrs)) + native.android_ndk_repository(**attrs) diff --git a/android/sdk_repository.bzl b/android/sdk_repository.bzl index 7d5002be8..fdaa02034 100644 --- a/android/sdk_repository.bzl +++ b/android/sdk_repository.bzl @@ -14,8 +14,6 @@ """Bazel rule for Android sdk repository.""" -load(":migration_tag_DONOTUSE.bzl", _add_migration_tag = "add_migration_tag") - def android_sdk_repository(**attrs): """Bazel android_sdk_repository rule. @@ -24,4 +22,4 @@ def android_sdk_repository(**attrs): Args: **attrs: Rule attributes """ - native.android_sdk_repository(**_add_migration_tag(attrs)) + native.android_sdk_repository(**attrs)