mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c63882238b
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/35065 Original commit changeset: ac76ea701e3d Original Phabricator Diff: D40611860 (https://github.com/facebook/react-native/commit/860b4d914407ef11d0d5de80e5add275f83de3fd) Open source is using BUCK 1 which does not seem to have the `oncall` directive. Backing it out because it is breaking the external CI. ## Changelog [internal] Reviewed By: cortinico Differential Revision: D40637084 fbshipit-source-id: 2be7296f859412210afe981adf500ab6540f7ee8
33 lines
912 B
Python
33 lines
912 B
Python
load("@fbsource//tools/build_defs:js_library_glob.bzl", "js_library_glob")
|
|
load("@fbsource//tools/build_defs/oss:metro_defs.bzl", "rn_library")
|
|
|
|
# This file was generated by running
|
|
# js1 build buckfiles
|
|
|
|
rn_library(
|
|
name = "IntegrationTests",
|
|
srcs = js_library_glob(
|
|
[
|
|
"**/*",
|
|
],
|
|
excludes = [
|
|
"**/__*__/**",
|
|
"**/*.command",
|
|
"**/*.md",
|
|
"websocket_integration_test_server.js",
|
|
],
|
|
),
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholder",
|
|
],
|
|
skip_processors = True,
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
"//xplat/js:node_modules__invariant",
|
|
"//xplat/js:node_modules__nullthrows",
|
|
"//xplat/js/RKJSModules/vendor/react:react",
|
|
"//xplat/js/react-native-github:react-native",
|
|
"//xplat/js/react-native-github/packages/assets:assets",
|
|
],
|
|
)
|