blob: 7a40d4b2a988eaad0a64850e4068319f3cee337a (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
GO_LIBRARY()
LICENSE(MIT)
SRCS(
array.go
config.go
doc.go
encoder.go
error.go
field.go
flag.go
global.go
http_handler.go
level.go
logger.go
options.go
sink.go
sugar.go
time.go
writer.go
)
GO_TEST_SRCS(
array_test.go
clock_test.go
common_test.go
config_test.go
encoder_test.go
error_test.go
field_test.go
flag_test.go
global_test.go
increase_level_test.go
leak_test.go
level_test.go
logger_bench_test.go
logger_test.go
sink_test.go
sugar_test.go
time_test.go
writer_test.go
)
GO_XTEST_SRCS(
example_test.go
http_handler_test.go
# stacktrace_ext_test.go
)
IF (OS_WINDOWS)
GO_TEST_SRCS(sink_windows_test.go)
ENDIF()
END()
RECURSE(
# benchmarks
buffer
gotest
internal
zapcore
zapgrpc
zapio
zaptest
)
|