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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# -*- mode: python -*-
Import("env")
# These commands are linked both in MongoS and MongoD
env.Library(
target='shared_cluster_commands',
source=[
'cluster_get_shard_map_cmd.cpp',
],
LIBDEPS=[
'$BUILD_DIR/mongo/s/client/sharding_client',
]
)
# These commands are linked in MongoS only
env.Library(
target='cluster_commands',
source=[
'cluster_add_shard_cmd.cpp',
'cluster_commands_common.cpp',
'cluster_count_cmd.cpp',
'cluster_current_op.cpp',
'cluster_db_stats_cmd.cpp',
'cluster_drop_database_cmd.cpp',
'cluster_enable_sharding_cmd.cpp',
'cluster_explain_cmd.cpp',
'cluster_find_cmd.cpp',
'cluster_find_and_modify_cmd.cpp',
'cluster_flush_router_config_cmd.cpp',
'cluster_fsync_cmd.cpp',
'cluster_get_last_error_cmd.cpp',
'cluster_get_prev_error_cmd.cpp',
'cluster_get_shard_version_cmd.cpp',
'cluster_getmore_cmd.cpp',
'cluster_index_filter_cmd.cpp',
'cluster_is_db_grid_cmd.cpp',
'cluster_is_master_cmd.cpp',
'cluster_killcursors_cmd.cpp',
'cluster_kill_op.cpp',
'cluster_list_databases_cmd.cpp',
'cluster_list_shards_cmd.cpp',
'cluster_map_reduce_cmd.cpp',
'cluster_merge_chunks_cmd.cpp',
'cluster_move_chunk_cmd.cpp',
'cluster_move_primary_cmd.cpp',
'cluster_netstat_cmd.cpp',
'cluster_pipeline_cmd.cpp',
'cluster_plan_cache_cmd.cpp',
'cluster_profile_cmd.cpp',
'cluster_remove_shard_cmd.cpp',
'cluster_repair_database_cmd.cpp',
'cluster_repl_set_get_status_cmd.cpp',
'cluster_reset_error_cmd.cpp',
'cluster_shard_collection_cmd.cpp',
'cluster_shutdown_cmd.cpp',
'cluster_split_collection_cmd.cpp',
'cluster_user_management_commands.cpp',
'cluster_whats_my_uri_cmd.cpp',
'cluster_write_cmd.cpp',
'commands_public.cpp',
'run_on_all_shards_cmd.cpp',
],
LIBDEPS=[
'$BUILD_DIR/mongo/db/pipeline/pipeline',
'$BUILD_DIR/mongo/db/commands/killcursors_common'
]
)
|