blob: df4272f905213f0211dd2c998d7a436b7331dc1e (
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
|
GO_LIBRARY()
LICENSE(Apache-2.0)
#GO_XTEST_SRCS(metric_test.go)
SRCS(
asyncfloat64.go
asyncint64.go
config.go
doc.go
instrument.go
meter.go
syncfloat64.go
syncint64.go
)
GO_TEST_SRCS(
asyncfloat64_test.go
asyncint64_test.go
instrument_test.go
syncfloat64_test.go
syncint64_test.go
)
GO_XTEST_SRCS(
config_test.go
example_test.go
)
END()
RECURSE(
embedded
#gotest
noop
)
|