forked from bazel-xcode/PodToBUILD
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to Bazel 4, migrate ObjcProvider compile info to CcCompilation…
…Context (bazel-xcode#174) * Use Bazel 4.0.0 * Use latest rules_apple * --spawn_strategy=standalone is deprecated * use_top_level_targets_for_symlinks fixed bazel-bin symlink * Set bazelversion 4.0.0 in every .bazelversion * Change gen_includes to use a CcInfo * Use CcInfo for module maps * Make the React example actually build an iOS app
- Loading branch information
Showing
56 changed files
with
651 additions
and
450 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# A few settings for XCHammer's .bazelrc | ||
# Debugging: Use the remapping feature of rules_swift. | ||
build \ | ||
--spawn_strategy=standalone \ | ||
--spawn_strategy=local \ | ||
--strategy=SwiftCompile=worker \ | ||
--swiftcopt=-Xwrapped-swift=-debug-prefix-pwd-is-dot \ | ||
--experimental_strict_action_env=true | ||
|
||
test \ | ||
--spawn_strategy=standalone \ | ||
--spawn_strategy=local \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.4.1 | ||
4.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,4 @@ external | |
Pods/ | ||
PodsHost/ | ||
*.xcworkspace | ||
PodToBUILD.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.4.1 | ||
4.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
load("@rules_cc//cc:defs.bzl", "objc_library") | ||
|
||
objc_library(name="all", deps=["//Vendor/ArcSplitting:ArcSplitting"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# A few settings for XCHammer's .bazelrc | ||
# Debugging: Use the remapping feature of rules_swift. | ||
build \ | ||
--spawn_strategy=standalone \ | ||
--spawn_strategy=local \ | ||
--strategy=SwiftCompile=worker \ | ||
--swiftcopt=-Xwrapped-swift=-debug-prefix-pwd-is-dot \ | ||
--experimental_strict_action_env=true | ||
|
||
test \ | ||
--spawn_strategy=standalone \ | ||
--spawn_strategy=local \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.4.1 | ||
4.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.4.1 | ||
4.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
load("@rules_cc//cc:defs.bzl", "objc_library") | ||
|
||
objc_library(name="all", deps=["//Vendor/Parent:Parent"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.