Fix rntester buck build (#26221)

Summary:
CI buck build is currently broken, this fixes it.

## Changelog

[Internal] [Fixed] - Fix rntester buck build
Pull Request resolved: https://github.com/facebook/react-native/pull/26221

Test Plan: `buck fetch rntester && buck build rntester`

Reviewed By: cpojer

Differential Revision: D17091483

Pulled By: osdnk

fbshipit-source-id: 09fd86270e7b27d2632b936cc809d80299c7ab38
This commit is contained in:
Janic Duplessis
2019-09-10 04:00:33 -07:00
committed by Facebook Github Bot
parent c2d28074b3
commit 1bff38a5f1
2 changed files with 18 additions and 2 deletions
@@ -1,4 +1,17 @@
load("//tools/build_defs/oss:rn_defs.bzl", "rn_android_library")
load("//tools/build_defs:fb_native_wrapper.bzl", "fb_native")
load("//tools/build_defs/oss:rn_defs.bzl", "rn_android_library", "rn_prebuilt_jar")
rn_prebuilt_jar(
name = "yoga-annotations",
binary_jar = ":annotations-binary.jar",
visibility = ["PUBLIC"],
)
fb_native.remote_file(
name = "annotations-binary.jar",
sha1 = "3d015bb821875657ac8e4b808a223aae339defb2",
url = "https://jcenter.bintray.com/com/facebook/yoga/proguard-annotations/1.14.1/proguard-annotations-1.14.1.jar",
)
rn_android_library(
name = "annotations",
@@ -7,6 +20,7 @@ rn_android_library(
visibility = [
"PUBLIC",
],
deps = [
exported_deps = [
":yoga-annotations",
],
)