Reviewed By: mzlee Differential Revision: D9546736 fbshipit-source-id: ff0c19a33cc72a330bac1e266ad0bb6d7c440e60
31 lines
852 B
Python
31 lines
852 B
Python
# Copyright (c) 2014-present, Facebook, Inc.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
load("//tools/build_defs/oss:yoga_defs.bzl", "ANDROID_JAVA_TARGET", "ANDROID_RES_TARGET", "INFER_ANNOTATIONS_TARGET", "JAVA_TARGET", "PROGRUARD_ANNOTATIONS_TARGET", "yoga_android_aar", "yoga_android_resource")
|
|
|
|
yoga_android_aar(
|
|
name = "android",
|
|
manifest_skeleton = "src/main/AndroidManifest.xml",
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
deps = [
|
|
ANDROID_JAVA_TARGET,
|
|
ANDROID_RES_TARGET,
|
|
INFER_ANNOTATIONS_TARGET,
|
|
JAVA_TARGET,
|
|
PROGRUARD_ANNOTATIONS_TARGET,
|
|
],
|
|
)
|
|
|
|
yoga_android_resource(
|
|
name = "res",
|
|
package = "com.facebook.yoga.android",
|
|
res = "src/main/res",
|
|
visibility = [
|
|
"PUBLIC",
|
|
],
|
|
)
|