summaryrefslogtreecommitdiff
path: root/src/mongo/db/process_health/SConscript
blob: f59342d05bfe171ef4d53a58b9eb7456af6e3f36 (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
# -*- mode: python -*-

Import("env")

env = env.Clone()

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

env.CppUnitTest(
    target="fault_manager_test",
    source=[
        "fault_manager_test.cpp",
    ],
    LIBDEPS=[
        "fault_manager",
    ],
)