Skip to content

Commit

Permalink
Flip objc_(import|library) to Starlark
Browse files Browse the repository at this point in the history
This will start using the Starlark version of the rule's by default.

TGP is clean but if problems become apparent after a release, in order to avoid
a rollback, you can add --experimental_builtins_injection_override=-objc_library,-objc_import
to the blazerc.

Performance regressions from 9a423f8 are fixed. See Benchmark chip.

TESTED=[]

RELNOTES:none
PiperOrigin-RevId: 382566869
  • Loading branch information
oquenchil authored and copybara-github committed Jul 1, 2021
1 parent 9d56fbe commit ff38dbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/starlark/builtins_bzl/common/exports.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ exported_toplevels = {
"_builtins_dummy": "overridden value",
}
exported_rules = {
"-objc_import": objc_import,
"-objc_library": objc_library,
"+objc_import": objc_import,
"+objc_library": objc_library,
}
exported_to_java = {}

0 comments on commit ff38dbf

Please sign in to comment.