rules_apple_line icon indicating copy to clipboard operation
rules_apple_line copied to clipboard

LINE's Apple rules for Bazel

Results 8 rules_apple_line issues
Sort by recently updated
recently updated
newest added

I am looking to consume a generated `-Swift.h` header by using a convenience import (so I can import other libraries that are transitively required before importing my `-Swift.h`).

- Update bazel to [5.0.0](https://github.com/bazelbuild/bazel/releases/tag/5.0.0) - Update rules_apple to [0.33.0](https://github.com/bazelbuild/rules_apple/releases/tag/0.33.0)

running this rule on bazel 5.0.0, will return empty `.cfg`, any plan to update the rule? ``` dep[apple_common.Objc].module_map ``` this will return `[]`

Hello @thii! We migrated all our project and its dependencies to bazel but we can't reduce the build time in incremental builds for swift targets. I added the profiling flag...

When I try to add a bridging header with `swift_copts = ["-import-objc-header", "path/to/Bridging-Header.h"]`, it fails to build, telling me that frameworks don't support bridging headers. Ideally, this wouldn't happen, and...

There is a requirement to add `AdServices.framework` but I need to include it as **weak** to support earlier devices without crashing them. I added : ``` weak_sdk_frameworks = [ "AdServices",...

Do you have plans to support the latest Bazel rules 2.3.0?

Hi! I found this project because I was looking for a way to build metal libraries using Bazel. I'm pretty new to Bazel so I may just be holding this...