mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e1eb938c9d
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/31340 Changelog: [Internal] Reviewed By: yungsters Differential Revision: D27669950 fbshipit-source-id: 3129d87da8f74d896c0b9e82799b8896b3ed7635
25 lines
722 B
Python
25 lines
722 B
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# 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:rn_codegen_defs.bzl",
|
|
"rn_codegen",
|
|
)
|
|
|
|
rn_codegen(
|
|
name = "FBReactNativeSpec",
|
|
android_package_name = "com.facebook.fbreact.specs",
|
|
codegen_modules = True,
|
|
library_labels = ["supermodule:xplat/default/public.react_native.infra"],
|
|
native_module_spec_name = "FBReactNativeSpec",
|
|
)
|
|
|
|
# TODO: Merge this into FBReactNativeSpec
|
|
rn_codegen(
|
|
name = "FBReactNativeComponentSpec",
|
|
codegen_components = True,
|
|
library_labels = ["supermodule:xplat/default/public.react_native.infra"],
|
|
)
|