mirror of
https://github.com/bazel-contrib/rules_foreign_cc
synced 2024-11-28 08:43:26 +00:00
08e8c6c93d
* Sorted dependencies * Added rules_android repository to satisfy buildifier defects * Added rules_cc repository to satisfy buildifier defects * Ran Buildifier
13 lines
315 B
Python
13 lines
315 B
Python
"""A module for bringing in transitive dependencies of rules_android"""
|
|
|
|
load("@rules_android//android:rules.bzl", "android_ndk_repository", "android_sdk_repository")
|
|
|
|
def deps_android():
|
|
android_sdk_repository(
|
|
name = "androidsdk",
|
|
)
|
|
|
|
android_ndk_repository(
|
|
name = "androidndk",
|
|
)
|