Reviewed By: IanChilds Differential Revision: D37594044 fbshipit-source-id: 0bbcaaed951a212651d3cc0fc3371751ced13852
24 lines
701 B
Python
24 lines
701 B
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the license found in the
|
|
# LICENSE-examples file in the root directory of this source tree.
|
|
|
|
load("//tools/build_defs/oss:yoga_defs.bzl", "ANDROID_JAVA_TARGET", "ANDROID_SAMPLE_RES_TARGET", "ANDROID_SUPPORT_TARGET", "APPCOMPAT_TARGET", "SOLOADER_TARGET", "yoga_android_library")
|
|
|
|
yoga_android_library(
|
|
name = "yoga",
|
|
srcs = glob(["**/*.java"]),
|
|
autoglob = False,
|
|
language = "JAVA",
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
ANDROID_JAVA_TARGET,
|
|
ANDROID_SAMPLE_RES_TARGET,
|
|
ANDROID_SUPPORT_TARGET,
|
|
APPCOMPAT_TARGET,
|
|
SOLOADER_TARGET,
|
|
],
|
|
)
|