summaryrefslogtreecommitdiff
path: root/absl/time/BUILD.bazel
diff options
context:
space:
mode:
authorGravatar Abseil Team <absl-team@google.com>2022-11-15 09:08:33 -0800
committerGravatar Copybara-Service <copybara-worker@google.com>2022-11-15 09:09:28 -0800
commitd6fa16c8c5a067382ba991fe9765772ee2698088 (patch)
treeff0836e9476d56f23569fec2fa3f894f2c8f7f9a /absl/time/BUILD.bazel
parent3ed4ca1f7f6a32cbfaabb095dcd6a2b81c5a3155 (diff)
Remove absl/time/internal/zoneinfo.inc. It was used to guarantee
availability of a few timezones for "time_test" and "time_benchmark", but (file-based) zoneinfo is now secured via existing Bazel data/env attributes, or new CMake environment settings. This also avoids the need for employing the CCTZ zone-info-source extension mechanism (which is a win). PiperOrigin-RevId: 488673952 Change-Id: I9def9d705c8f0dca3c0bcddc2406edb098ea5da3
Diffstat (limited to 'absl/time/BUILD.bazel')
-rw-r--r--absl/time/BUILD.bazel7
1 files changed, 1 insertions, 6 deletions
diff --git a/absl/time/BUILD.bazel b/absl/time/BUILD.bazel
index a6ea3506..14b7c5b7 100644
--- a/absl/time/BUILD.bazel
+++ b/absl/time/BUILD.bazel
@@ -59,10 +59,7 @@ cc_library(
cc_library(
name = "test_util",
testonly = 1,
- srcs = [
- "internal/test_util.cc",
- "internal/zoneinfo.inc",
- ],
+ srcs = ["internal/test_util.cc"],
hdrs = ["internal/test_util.h"],
copts = ABSL_DEFAULT_COPTS,
linkopts = ABSL_DEFAULT_LINKOPTS,
@@ -71,8 +68,6 @@ cc_library(
":time",
"//absl/base:config",
"//absl/base:raw_logging_internal",
- "//absl/time/internal/cctz:time_zone",
- "@com_google_googletest//:gtest",
],
)