summaryrefslogtreecommitdiff
path: root/src/mongo/db/stats/SConscript
blob: 3141d5e5272ace4199e1212e1235f97eb96eb938 (plain)
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
# -*- mode: python -*-

Import("env")

env.Library(
    target='top',
    source=[
        'top.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/db/service_context',
    ],
)

env.CppUnitTest(
    target='top_test',
    source=[
        'top_test.cpp',
    ],
    LIBDEPS=[
        'top',
    ],
)

env.Library(
    target='counters',
    source=[
        'counters.cpp',
    ],
    LIBDEPS=[
    ],
)