BUCK 586 B

123456789101112131415161718192021222324252627
  1. load("//tools/build_defs/oss:rn_defs.bzl", "GLOG_DEP", "cxx_library")
  2. cxx_library(
  3. name = "microprofiler",
  4. srcs = [
  5. "MicroProfiler.cpp",
  6. ],
  7. header_namespace = "microprofiler",
  8. exported_headers = [
  9. "MicroProfiler.h",
  10. ],
  11. compiler_flags = [
  12. "-Wall",
  13. "-Werror",
  14. "-std=c++14",
  15. "-fexceptions",
  16. "-fno-data-sections",
  17. ],
  18. fbobjc_labels = ["supermodule:ios/default/public.react_native.infra"],
  19. force_static = True,
  20. visibility = [
  21. "PUBLIC",
  22. ],
  23. deps = [
  24. GLOG_DEP,
  25. ],
  26. )