mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
ceae48c0f7
Summary: While it would be better to be able to do all of the ownership metadata at the Buck macro level, that proved to be more work than expected. This diff adds the corresponding pfh label to all targets in `xplat/js/react-native-github` that have a Supermodule label. Once the migration is complete the Supermodules labels will be able to be removed. Reviewed By: cortinico Differential Revision: D35221544 fbshipit-source-id: d87d5e266dfb5e6ee087251dc34dff5db299bbaf
34 lines
950 B
Python
34 lines
950 B
Python
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 = "IntegrationTests",
|
|
srcs = js_glob(
|
|
[
|
|
"**/*",
|
|
],
|
|
excludes = [
|
|
"**/__*__/**",
|
|
"**/*.command",
|
|
"**/*.md",
|
|
"websocket_integration_test_server.js",
|
|
],
|
|
),
|
|
labels = [
|
|
"pfh:ReactNative_CommonInfrastructurePlaceholde",
|
|
"supermodule:xplat/default/public.react_native.tests",
|
|
],
|
|
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",
|
|
],
|
|
)
|