diff options
author | Derek Mauro <dmauro@google.com> | 2023-10-11 07:57:33 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2023-10-11 07:58:06 -0700 |
commit | 0ef3ef432996de4c5afa879b93b2ba4f6c130ab2 (patch) | |
tree | ea6735f6333a1020d2e523df45aae1e5f1e32661 /absl/time | |
parent | 143e983739333ce4b30320d26bce8594bd24b5f3 (diff) |
Bazel: Enable the header_modules feature
PiperOrigin-RevId: 572575394
Change-Id: Ic1c5ac2423b1634e50c43bad6daa14e82a8f3e2c
Diffstat (limited to 'absl/time')
-rw-r--r-- | absl/time/BUILD.bazel | 1 | ||||
-rw-r--r-- | absl/time/internal/cctz/BUILD.bazel | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/absl/time/BUILD.bazel b/absl/time/BUILD.bazel index ea5fba6c..e3fe705b 100644 --- a/absl/time/BUILD.bazel +++ b/absl/time/BUILD.bazel @@ -24,6 +24,7 @@ load( package( default_visibility = ["//visibility:public"], features = [ + "header_modules", "layering_check", "parse_headers", ], diff --git a/absl/time/internal/cctz/BUILD.bazel b/absl/time/internal/cctz/BUILD.bazel index 4c5ad075..83157dd3 100644 --- a/absl/time/internal/cctz/BUILD.bazel +++ b/absl/time/internal/cctz/BUILD.bazel @@ -12,7 +12,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -package(features = ["-parse_headers"]) +package(features = [ + "-parse_headers", + "header_modules", +]) licenses(["notice"]) |