Brentley Jones
Brentley Jones
Build is green. For this to get over the finish line it needs some tests. @erikkerber (or a delegate) or @ajanuar, could either of you contribute some?
Can you show an error? We never had duplicate symbol errors.
We didn't have something like `Culinary` depended on by `helper bundle binary`. The bundle only provided interfaces that allowed communication with the app, the app had all of the dependencies....
`ios_unit_test` has a `test_host` attribute that causes the test host to be the `-bundle_loader` for the unit test. I was saying to copy that logic, to allow a bundle to...
Yes, that is the correct understanding.
We might as well have a checked in example.
I can't look at this until the CLA is signed. Thanks!
Could we use `binary_contents_test` for both sides of the flag to check for the symbols? Resulting in at least 4 things tested: - dylibs not stripped - dylibs stripped -...
Here is how we use it today: ``` codesignopts = select({ "//:debug": [ "--digest-algorithm=sha1", "--resource-rules=$(RULES)", ], "//conditions:default": [], }), codesign_inputs = select({ "//:debug": ["@//bazel:resource_rules"], "//conditions:default": [], }), toolchains = select({...
While `ctx.expand_make_variables` is deprecated, it says to use [ctx.var](https://docs.bazel.build/versions/main/skylark/lib/ctx.html#var) instead. Are we able to continue to support toolchain expansion along with location expansion? Sure, the current use case shown is...