Skip to content

Commit

Permalink
Add android_repository.bzl
Browse files Browse the repository at this point in the history
* #544
* #567

PiperOrigin-RevId: 458727674
  • Loading branch information
hiroyuki-komatsu committed Jul 3, 2022
1 parent 48a99e7 commit e05888b
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ load(
)
load("//:config.bzl", "QT_BASE_PATH")

# This rule refers to $ANDROID_SDK_HOME.
android_sdk_repository(name = "androidsdk")

# Android NDK version should be r11c+ for Abseil.
# Android NDK setup
# This rule refers to $ANDROID_NDK_HOME.
android_ndk_repository(name = "androidndk")
# If native.android_ndk_repository is called directly,
# Android NDK should be available in the build environment.
# https://github.com/bazelbuild/bazel/issues/14260
load("//:android_repository.bzl", "android_repository")
android_repository(name = "android_repository")
load("@android_repository//:setup.bzl", "android_ndk_setup")
android_ndk_setup()

local_repository(
name = "com_google_absl",
Expand Down
64 changes: 64 additions & 0 deletions src/android_repository.bzl
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Copyright 2010-2021, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following disclaimer
# in the documentation and/or other materials provided with the
# distribution.
# * Neither the name of Google Inc. nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

"""Repository rule for Android build system.
If ANDROID_NDK_HOME env variable is set, android_ndk_repository is called.
Otherwise do nothing.
## Usage example in WORKSPACE.bazel
```
load("//:android_repository.bzl", "android_repository")
android_repository(name = "android_repository")
load("@android_repository//:setup.bzl", "android_ndk_setup")
android_ndk_setup()
```
## Reference
* https://github.com/google/mozc/issues/544
* https://github.com/bazelbuild/bazel/issues/14260
"""

NDK_SETUP_TEMPLATE = """
def android_ndk_setup():
{rule}
"""

def _android_repository_impl(repository_ctx):
if repository_ctx.os.environ.get("ANDROID_NDK_HOME"):
rule = "native.android_ndk_repository(name=\"androidndk\")"
else:
rule = "pass"
repository_ctx.file("BUILD.bazel", "")
repository_ctx.file("setup.bzl", NDK_SETUP_TEMPLATE.format(rule = rule))

android_repository = repository_rule(
implementation = _android_repository_impl,
environ = ["ANDROID_NDK_HOME"],
)

0 comments on commit e05888b

Please sign in to comment.