aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/deprecated/json/ya.make
blob: b20030dd31a37686a70300012dc30de6eb848880 (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
LIBRARY()

# Deprecated writer of Solomon JSON format 
# https://wiki.yandex-team.ru/solomon/api/dataformat/json
# 
# This writer will be deleted soon, so please consider to use 
# high level library library/cpp/monlib/encode which is decoupled from the 
# particular format. 

OWNER(
    jamel
    g:solomon
)

SRCS( 
    writer.h 
    writer.cpp 
) 
 
PEERDIR(
    library/cpp/json
)

END()
 
RECURSE_FOR_TESTS(ut)