blob: 0e551d7ba165b27c924778820bdbb50276b6e03d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
GTEST()
LICENSE(Apache-2.0)
LICENSE_TEXTS(.yandex_meta/licenses.list.txt)
PEERDIR(
contrib/libs/cctz
contrib/libs/cctz/tzdata
)
ADDINCL(
contrib/libs/cctz/include
)
IF (NOT AUTOCHECK)
# We do not set TZDIR to a stable data source, so
# LoadZone("libc:localtime") is inconsistent and makes
# LocalTimeLibC test fail on distbuild.
CFLAGS(
-DCCTZ_TEST_LIBC_LOCALTIME
)
ENDIF()
SRCS(
civil_time_test.cc
time_zone_format_test.cc
time_zone_lookup_test.cc
)
EXPLICIT_DATA()
END()
|