Dan Fleming

Results 11 issues of Dan Fleming

This is a pattern used elsewhere in bazel ruleset repositories to not define the same external repo twice if the caller of `android_test_repositories()` already defined one. There's also a fair...

Here is an example of the xcconfig that gets generated by `buck project` for the BuckDemoApp project: ``` SDKROOT = iphoneos IPHONEOS_DEPLOYMENT_TARGET = 9.2 CLANG_CXX_LANGUAGE_STANDARD = c++14 OTHER_CPLUSPLUSFLAGS = -g...

P3

If you have old simulators from an earlier version of Xcode and no longer have that runtime installed, calling `device.runtime` will throw an exception: ``` SimCtl::RuntimeNotFound: Could not find a...

We try and use universal binaries in our workflows wherever we can so we don't have to have special logic to download the right tool depending on whether the mac...

It seems like `--stub_file` is only parsed to derive which interpreter is being used. Correct me if I'm wrong, but it seems like passing in `--interpreter` should short-circuit parsing that...

I was trying to think of a good way to handle this without broader changes or introducing new config keys like `EnvironmentVariablesDisabled` or `CommandlineArgumentsDisabled`. My initial thought was to prefix...

cla: yes

If a `swift_library` depends on a `apple_static_framework_import`, the idx target properly gets the framework's containing directory added to `FRAMEWORK_SEARCH_PATHS`, but it also gets an unnecessary `-fmodule-map-file` entry in `OTHER_SWIFT_FLAGS` (like...

`pip_repository` goes through the effort of building [`PYTHONPATH`](https://github.com/bazelbuild/rules_python/blob/4c961d92a15f4a3f90faab82eecb18d91ee2ccbe/python/pip_install/pip_repository.bzl#L6-L26) using its [vendored dependencies](https://github.com/bazelbuild/rules_python/blob/884afdccded874302aa8ca0808312f87c5f2675e/python/pip_install/repositories.bzl) like `setuptools`. This is used in `pip_repository` and `whl_library`. By default, it also passes `--isolated` to `pip wheel`,...

https://katzenbaer.medium.com/alternate-app-icons-using-asset-catalogs-in-xcode-13-da6387d1cd78 Xcode 13+ lets you put alternate icons in asset catalogs now. This could be probably be supported by `ios_application` and friends in a backwards compatible way: ```python ios_application( name...

[OCLint](http://oclint.org) is another static analysis tool that focuses on reducing complexity, confusion, and redundant code. It has a [ton](http://oclint-docs.readthedocs.io/en/stable/rules/index.html) of rules. This PR knocks out some of the simpler ones....