From 7a876c3d55bc43a696143ef1da069f9dff79e2c0 Mon Sep 17 00:00:00 2001 From: Tim Peut Date: Thu, 7 Jun 2018 11:23:14 -0700 Subject: [PATCH] Remove migration tag from sdk and ndk repo. These do not support tags. Will need to figure out how to properly migrate these. PiperOrigin-RevId: 199666266 --- android/ndk_repository.bzl | 4 +--- android/sdk_repository.bzl | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) 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)