-
Notifications
You must be signed in to change notification settings - Fork 15.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support --incompatible_enable_proto_toolchain_resolution
Move toolchain types into protobuf repo Add default registrations for them (building from sources) PiperOrigin-RevId: 674801639
- Loading branch information
1 parent
48ff232
commit 372ddb3
Showing
10 changed files
with
87 additions
and
9 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
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
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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
load("//bazel/toolchains:proto_lang_toolchain.bzl", "proto_lang_toolchain") | ||
load("//bazel/toolchains:proto_toolchain.bzl", "proto_toolchain") | ||
|
||
# Keep this file as small as possible and free of any unnecessary loads | ||
# It is loaded by every use of protobuf repository, and loads here can force | ||
# fetching of additional external repositories | ||
|
||
# It's also intentionally using toolchain instead of proto_lang_toolchain, | ||
# because the former does not resolve dependencies until toolchain resolution | ||
# needs them | ||
|
||
proto_toolchain( | ||
name = "protoc_sources", | ||
exec_compatible_with = [], | ||
proto_compiler = "//:protoc", | ||
) | ||
|
||
toolchain( | ||
name = "cc_source_toolchain", | ||
exec_compatible_with = [], | ||
target_compatible_with = [], | ||
toolchain = "//:cc_toolchain", | ||
toolchain_type = "//bazel/private:cc_toolchain_type", | ||
) | ||
|
||
toolchain( | ||
name = "java_source_toolchain", | ||
exec_compatible_with = [], | ||
target_compatible_with = [], | ||
toolchain = "//java/core:toolchain", | ||
toolchain_type = "//bazel/private:java_toolchain_type", | ||
) | ||
|
||
toolchain( | ||
name = "javalite_source_toolchain", | ||
exec_compatible_with = [], | ||
target_compatible_with = [], | ||
toolchain = "//java/lite:toolchain", | ||
toolchain_type = "//bazel/private:javalite_toolchain_type", | ||
) | ||
|
||
toolchain( | ||
name = "python_source_toolchain", | ||
exec_compatible_with = [], | ||
target_compatible_with = [], | ||
toolchain = "//python:python_toolchain", | ||
toolchain_type = "//bazel/private:python_toolchain_type", | ||
) |
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