Move integration test Buck targets to GitHub

Summary: Changelog: [Internal]

Reviewed By: GijsWeterings

Differential Revision: D30032467

fbshipit-source-id: 56e293c821f02e78fe13f5e7f22bcb2b2050019a
This commit is contained in:
Moti Zilberman
2021-08-04 13:03:21 -07:00
committed by Facebook GitHub Bot
parent b26ae3e0c9
commit 1ed1ac7caf
2 changed files with 56 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
load("@fbsource//tools/build_defs:js_glob.bzl", "js_glob")
load("@fbsource//tools/build_defs/oss:metro_defs.bzl", "rn_library")
# This file was generated by running
# js1 build buckfiles
rn_library(
name = "js",
srcs = js_glob(
[
"**/*",
],
excludes = [
"**/__*__/**",
"**/*.command",
"**/*.md",
],
),
labels = ["supermodule:xplat/default/public.react_native.tests"],
skip_processors = True,
visibility = ["PUBLIC"],
deps = [
"//xplat/js/RKJSModules/vendor/react:react",
"//xplat/js/react-native-github:react-native",
],
)