summaryrefslogtreecommitdiff
path: root/absl/time/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'absl/time/BUILD.bazel')
-rw-r--r--absl/time/BUILD.bazel5
1 files changed, 4 insertions, 1 deletions
diff --git a/absl/time/BUILD.bazel b/absl/time/BUILD.bazel
index c7c16d43..969ddd2e 100644
--- a/absl/time/BUILD.bazel
+++ b/absl/time/BUILD.bazel
@@ -27,6 +27,7 @@ licenses(["notice"]) # Apache 2.0
cc_library(
name = "time",
srcs = [
+ "civil_time.cc",
"clock.cc",
"duration.cc",
"format.cc",
@@ -35,6 +36,7 @@ cc_library(
"time.cc",
],
hdrs = [
+ "civil_time.h",
"clock.h",
"time.h",
],
@@ -72,10 +74,10 @@ cc_library(
cc_test(
name = "time_test",
srcs = [
+ "civil_time_test.cc",
"clock_test.cc",
"duration_test.cc",
"format_test.cc",
- "time_norm_test.cc",
"time_test.cc",
"time_zone_test.cc",
],
@@ -94,6 +96,7 @@ cc_test(
cc_test(
name = "time_benchmark",
srcs = [
+ "civil_time_benchmark.cc",
"clock_benchmark.cc",
"duration_benchmark.cc",
"format_benchmark.cc",