Skip to content

Commit

Permalink
Remove migration tag from sdk and ndk repo.
Browse files Browse the repository at this point in the history
These do not support tags. Will need to figure out how to properly migrate
these.

PiperOrigin-RevId: 199666266
  • Loading branch information
timpeut committed Jun 15, 2018
1 parent 57b6314 commit 7a876c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions android/ndk_repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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)
4 changes: 1 addition & 3 deletions android/sdk_repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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)

0 comments on commit 7a876c3

Please sign in to comment.