mirror of
https://github.com/google/nomulus.git
synced 2025-07-20 09:46:03 +02:00
Add feature to disable --experimental_java_proto_library_enforce_strict_deps for
non-compliant packages that depend on java_x_proto_library targets. This will enable blaze to enforce strict_deps by default while missing dependencies are added to these packages. Changes made using newly released blaze flag: USE_CANARY_BLAZE=nightly blaze build -k --experimental_java_proto_library_enforce_strict_deps then extracting the packages from the resulting add_dep commands, and for each package running: buildozer 'add features -jpl_strict_deps' <package>:__pkg__ More information: [] Tested: TAP sample presubmit queue [] ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=206349847
This commit is contained in:
parent
6e74ba0587
commit
be189354da
2 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
|
||||
package(
|
||||
default_visibility = ["//visibility:public"],
|
||||
features = ["-jpl_strict_deps"],
|
||||
)
|
||||
|
||||
licenses(["notice"]) # Apache 2.0
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package(
|
||||
default_visibility = ["//visibility:public"],
|
||||
features = ["-jpl_strict_deps"],
|
||||
)
|
||||
|
||||
licenses(["notice"]) # Apache 2.0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue