summaryrefslogtreecommitdiff
path: root/src/mongo/tools/SConscript
diff options
context:
space:
mode:
authorAndrew Morrow <andrew.morrow@10gen.com>2019-12-10 20:05:44 +0000
committerevergreen <evergreen@mongodb.com>2019-12-10 20:05:44 +0000
commit825f7246e8a973f134c533d0d1f3b68abeeba010 (patch)
treec33d63d86281bb300da2c019ae08928b7d215307 /src/mongo/tools/SConscript
parent711b443933b323f7cb9c9fa4256a37a777bf58e2 (diff)
SERVER-44546 Remove mobile variants and embedded benchmarksr4.0.14-rc0
(cherry picked from commit be05c9ea62d6f01895545628992f1899426b88c4) (cherry picked from commit c51ba0a06ede1d87cd8df637f379bb3ceabad6fa)
Diffstat (limited to 'src/mongo/tools/SConscript')
-rw-r--r--src/mongo/tools/SConscript23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/mongo/tools/SConscript b/src/mongo/tools/SConscript
index e65cbc2c209..095b2485927 100644
--- a/src/mongo/tools/SConscript
+++ b/src/mongo/tools/SConscript
@@ -32,29 +32,6 @@ mongobridge = env.Program(
],
)
-mongoebench = yamlEnv.Program(
- target='mongoebench',
- source=[
- 'mongoebench_main.cpp',
- 'mongoebench_options.cpp',
- 'mongoebench_options_init.cpp',
- ],
- LIBDEPS=[
- '$BUILD_DIR/mongo/db/dbdirectclient',
- '$BUILD_DIR/mongo/embedded/embedded',
- '$BUILD_DIR/mongo/embedded/embedded_integration_helpers',
- '$BUILD_DIR/mongo/shell/benchrun',
- '$BUILD_DIR/mongo/util/signal_handlers',
- ],
- INSTALL_ALIAS=[
- 'embedded-test',
- 'tools',
- ],
-)
-
hygienic = get_option('install-mode') == 'hygienic'
if not hygienic:
env.Install("#/", mongobridge)
- env.Install("#/", mongoebench)
-
-env.Alias('all', mongoebench) # This ensures it compiles and links, but doesn't copy it anywhere.