aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Peut <timpeut@google.com>2018-06-07 11:23:14 -0700
committerTim Peut <timpeut@google.com>2018-06-14 18:03:48 -0700
commit7a876c3d55bc43a696143ef1da069f9dff79e2c0 (patch)
tree287e07e63fae43819b3a3594947ddf40c6675fda
parent57b631489a8d453f9c54d058a1d4cf0163d5d3dd (diff)
downloadbazelbuild-rules_android-7a876c3d55bc43a696143ef1da069f9dff79e2c0.tar.gz
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
-rw-r--r--android/ndk_repository.bzl4
-rw-r--r--android/sdk_repository.bzl4
2 files changed, 2 insertions, 6 deletions
diff --git a/android/ndk_repository.bzl b/android/ndk_repository.bzl
index 14995b8..d8c64dd 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 7d5002b..fdaa020 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)