summaryrefslogtreecommitdiff
path: root/src/mongo/s/client/SConscript
blob: c22a4be463590b223aa993770dc962ed5971c631 (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
# -*- mode: python -*-

Import("env")

env.Library(
    target='sharding_client',
    source=[
        'dbclient_multi_command.cpp',
        'shard.cpp',
        'shard_connection.cpp',
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/clientdriver',
    ]
)

env.CppUnitTest(
    target='sharding_client_test',
    source=[
        'shard_connection_test.cpp'
    ],
    LIBDEPS=[
        'sharding_client',
        '$BUILD_DIR/mongo/coredb',
        '$BUILD_DIR/mongo/coreserver',
        '$BUILD_DIR/mongo/coreshard',
        '$BUILD_DIR/mongo/mongoscore',
        '$BUILD_DIR/mongo/mongocommon',
        '$BUILD_DIR/mongo/mocklib',
    ]
)