Skip to content

Commit

Permalink
SERVER-9666 Add more misssing LIBDEP edges
Browse files Browse the repository at this point in the history
  • Loading branch information
acmorrow committed Aug 10, 2015
1 parent c25ec46 commit e263b98
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/mongo/client/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ env.Library(
],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/s/catalog/catalog_manager',
'clientdriver',
],
)
Expand Down
1 change: 1 addition & 0 deletions src/mongo/db/exec/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ env.Library(
"scoped_timer",
"working_set",
"$BUILD_DIR/mongo/base",
'$BUILD_DIR/third_party/s2/s2',
],
)

Expand Down
5 changes: 4 additions & 1 deletion src/mongo/db/index/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ env.Library(
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/bson/util/bson_extract',
'$BUILD_DIR/mongo/db/geo/geometry',
'$BUILD_DIR/mongo/db/geo/geoparser',
'$BUILD_DIR/mongo/db/index_names',
'$BUILD_DIR/mongo/db/mongohasher',
'$BUILD_DIR/third_party/s2/s2',
]
Expand All @@ -70,6 +73,6 @@ env.CppUnitTest(

env.Library('s2_keys', [ 's2_keys.cpp' ],
LIBDEPS=[
'$BUILD_DIR/mongo/db/geo/geometry',
'$BUILD_DIR/mongo/db/geo/geometry',
],
)
1 change: 1 addition & 0 deletions src/mongo/db/pipeline/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ docSourceEnv.Library(
'document_value',
'expression',
'$BUILD_DIR/mongo/client/clientdriver',
'$BUILD_DIR/mongo/db/service_context',
'$BUILD_DIR/mongo/db/matcher/expressions',
'$BUILD_DIR/third_party/shim_snappy',
]
Expand Down
1 change: 1 addition & 0 deletions src/mongo/db/repl/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ env.Library(
LIBDEPS=[
'$BUILD_DIR/mongo/base',
'$BUILD_DIR/mongo/client/clientdriver',
'oplog_interface_remote',
],
)

Expand Down
1 change: 1 addition & 0 deletions src/mongo/db/s/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ env.Library(
'$BUILD_DIR/mongo/db/range_arithmetic',
'$BUILD_DIR/mongo/s/catalog/catalog_types',
'$BUILD_DIR/mongo/s/common',
'$BUILD_DIR/mongo/db/service_context',
]
)

Expand Down
1 change: 1 addition & 0 deletions src/mongo/dbtests/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ env.Library(
"framework_options.cpp",
],
LIBDEPS=[
'$BUILD_DIR/mongo/db/storage/mmap_v1/storage_mmapv1',
'$BUILD_DIR/mongo/util/options_parser/options_parser_init',
'$BUILD_DIR/mongo/unittest/unittest',
],
Expand Down
1 change: 1 addition & 0 deletions src/mongo/rpc/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ env.Library(
LIBDEPS=[
'document_range',
'metadata',
'$BUILD_DIR/mongo/db/dbmessage',
'$BUILD_DIR/mongo/util/net/network',
],
)
Expand Down
1 change: 1 addition & 0 deletions src/mongo/s/client/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ env.Library(
],
LIBDEPS=[
'$BUILD_DIR/mongo/client/clientdriver',
'$BUILD_DIR/mongo/s/coreshard',
]
)

Expand Down
8 changes: 6 additions & 2 deletions src/mongo/s/query/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ env.Library(
source=[
"cluster_client_cursor_mock.cpp",
],
LIBDEPS=[],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
],
)

env.CppUnitTest(
Expand All @@ -84,7 +86,9 @@ env.Library(
source=[
"cluster_cursor_manager.cpp",
],
LIBDEPS=[],
LIBDEPS=[
'$BUILD_DIR/mongo/base',
],
)

env.CppUnitTest(
Expand Down

0 comments on commit e263b98

Please sign in to comment.