2017-09-19 22:54:40 +02:00
|
|
|
#
|
|
|
|
# Copyright 2017 The Abseil Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
load(
|
|
|
|
"//absl:copts.bzl",
|
|
|
|
"ABSL_DEFAULT_COPTS",
|
|
|
|
"ABSL_TEST_COPTS",
|
|
|
|
)
|
|
|
|
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "time",
|
|
|
|
srcs = [
|
2018-10-10 21:31:37 +02:00
|
|
|
"civil_time.cc",
|
2017-09-19 22:54:40 +02:00
|
|
|
"clock.cc",
|
|
|
|
"duration.cc",
|
|
|
|
"format.cc",
|
2018-08-02 19:08:43 +02:00
|
|
|
"internal/get_current_time_chrono.inc",
|
2017-09-19 22:54:40 +02:00
|
|
|
"internal/get_current_time_posix.inc",
|
|
|
|
"time.cc",
|
|
|
|
],
|
|
|
|
hdrs = [
|
2018-10-10 21:31:37 +02:00
|
|
|
"civil_time.h",
|
2017-09-19 22:54:40 +02:00
|
|
|
"clock.h",
|
|
|
|
"time.h",
|
|
|
|
],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
|
|
|
deps = [
|
|
|
|
"//absl/base",
|
|
|
|
"//absl/base:core_headers",
|
|
|
|
"//absl/numeric:int128",
|
2018-06-18 22:18:53 +02:00
|
|
|
"//absl/strings",
|
2018-04-23 17:17:58 +02:00
|
|
|
"//absl/time/internal/cctz:civil_time",
|
|
|
|
"//absl/time/internal/cctz:time_zone",
|
2017-09-19 22:54:40 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "test_util",
|
2018-04-30 20:44:26 +02:00
|
|
|
testonly = 1,
|
2017-09-19 22:54:40 +02:00
|
|
|
srcs = [
|
|
|
|
"internal/test_util.cc",
|
|
|
|
"internal/zoneinfo.inc",
|
|
|
|
],
|
|
|
|
hdrs = ["internal/test_util.h"],
|
|
|
|
copts = ABSL_DEFAULT_COPTS,
|
2017-10-13 19:21:40 +02:00
|
|
|
visibility = [
|
|
|
|
"//absl/time:__pkg__",
|
|
|
|
],
|
2017-09-19 22:54:40 +02:00
|
|
|
deps = [
|
|
|
|
":time",
|
|
|
|
"//absl/base",
|
2018-04-23 17:17:58 +02:00
|
|
|
"//absl/time/internal/cctz:time_zone",
|
2018-04-30 20:44:26 +02:00
|
|
|
"@com_google_googletest//:gtest",
|
2017-09-19 22:54:40 +02:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "time_test",
|
|
|
|
srcs = [
|
2018-10-10 21:31:37 +02:00
|
|
|
"civil_time_test.cc",
|
2017-09-19 22:54:40 +02:00
|
|
|
"clock_test.cc",
|
|
|
|
"duration_test.cc",
|
|
|
|
"format_test.cc",
|
|
|
|
"time_test.cc",
|
|
|
|
"time_zone_test.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
deps = [
|
|
|
|
":test_util",
|
|
|
|
":time",
|
|
|
|
"//absl/base",
|
|
|
|
"//absl/base:config",
|
|
|
|
"//absl/base:core_headers",
|
2018-04-23 17:17:58 +02:00
|
|
|
"//absl/time/internal/cctz:time_zone",
|
2017-09-19 22:54:40 +02:00
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
)
|
2018-06-08 17:14:48 +02:00
|
|
|
|
|
|
|
cc_test(
|
|
|
|
name = "time_benchmark",
|
|
|
|
srcs = [
|
2018-10-10 21:31:37 +02:00
|
|
|
"civil_time_benchmark.cc",
|
2018-06-08 17:14:48 +02:00
|
|
|
"clock_benchmark.cc",
|
|
|
|
"duration_benchmark.cc",
|
|
|
|
"format_benchmark.cc",
|
|
|
|
"time_benchmark.cc",
|
|
|
|
],
|
|
|
|
copts = ABSL_TEST_COPTS,
|
|
|
|
tags = [
|
|
|
|
"benchmark",
|
|
|
|
],
|
|
|
|
deps = [
|
|
|
|
":test_util",
|
|
|
|
":time",
|
|
|
|
"//absl/base",
|
2018-11-27 23:21:25 +01:00
|
|
|
"//absl/hash",
|
2018-06-08 17:14:48 +02:00
|
|
|
"@com_github_google_benchmark//:benchmark_main",
|
|
|
|
],
|
|
|
|
)
|