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

Import("env")

env = env.Clone()

env.Library(
    target='batch_write_types',
    source=[
        'batched_command_request.cpp', 'batched_command_response.cpp', 'batched_upsert_detail.cpp',
        'bulk_write_command_modifier.cpp'
    ],
    LIBDEPS=[
        '$BUILD_DIR/mongo/base',
        '$BUILD_DIR/mongo/db/commands',
        '$BUILD_DIR/mongo/db/commands/bulk_write_parser',
        '$BUILD_DIR/mongo/db/common',
        '$BUILD_DIR/mongo/db/error_labels',
        '$BUILD_DIR/mongo/db/ops/write_ops_parsers',
        '$BUILD_DIR/mongo/db/repl/optime',
        '$BUILD_DIR/mongo/db/vector_clock',
        '$BUILD_DIR/mongo/rpc/command_status',
        '$BUILD_DIR/mongo/s/common_s',
    ],
)