mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
87aca7ed74
Summary: Pull Request resolved: https://github.com/facebook/litho/pull/566 Pull Request resolved: https://github.com/facebook/react-native/pull/25702 Pass reason for each measure callback to the flipper plugin Reviewed By: davidaurelio Differential Revision: D16221771 fbshipit-source-id: 2e72e1ebb3c7e633d189e7a7a81d655ac9531e51
21 lines
438 B
Python
21 lines
438 B
Python
load("//tools/build_defs/oss:rn_defs.bzl", "cxx_library")
|
|
|
|
cxx_library(
|
|
name = "yoga",
|
|
srcs = glob(["yoga/**/*.cpp"]),
|
|
header_namespace = "",
|
|
exported_headers = glob(["yoga/**/*.h"]),
|
|
compiler_flags = [
|
|
"-fno-omit-frame-pointer",
|
|
"-fexceptions",
|
|
"-Wall",
|
|
"-Werror",
|
|
"-std=c++1y",
|
|
"-O3",
|
|
],
|
|
force_static = True,
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
],
|
|
)
|