bazel-xcode / bazel-xcode/PodToBUILD
Module Maps for Obj-C/C/C++ include too many files
Open
- Dominant language
- Swift
- Stars
- 330
- Forks
- 68
- PR merge metrics
- No merged PRs in 30d
Description
I noticed this with https://github.com/facebook/yoga
```
filegroup(
name = "yoga_hdrs",
srcs = glob(
[
"pod_support/Headers/Public/**/*.h"
],
exclude_directories = 1
),
visibility = [
"//visibility:public"
]
)
gen_module_map(
"yoga",
"yoga_module_map",
"yoga",
[
"yoga_hdrs"
]
)
```
It seems like `pod_support/Headers/Public/` contains too many files (every yoga header, public or private), given that the podspec lists only three public headers: https://github.com/facebook/yoga/blob/master/Yoga.podspec#L28.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.