diff options
author | Derek Mauro <dmauro@google.com> | 2022-09-06 12:02:16 -0700 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2022-09-06 12:03:05 -0700 |
commit | 60499cf45cde8e3354b58317efac7488cc5151b2 (patch) | |
tree | db2dfabc2b6f3d9126fc787a6d45f8c6fe43c385 /absl/algorithm/BUILD.bazel | |
parent | f2b8a81d637fd480c760e92b06a542bbc63843d2 (diff) |
Convert algorithm and container benchmarks to cc_binary
PiperOrigin-RevId: 472521745
Change-Id: Ia76cd720d1036dce05f6332f41a2ff748b3ea971
Diffstat (limited to 'absl/algorithm/BUILD.bazel')
-rw-r--r-- | absl/algorithm/BUILD.bazel | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/absl/algorithm/BUILD.bazel b/absl/algorithm/BUILD.bazel index f6d74714..3a9ab013 100644 --- a/absl/algorithm/BUILD.bazel +++ b/absl/algorithm/BUILD.bazel @@ -48,8 +48,9 @@ cc_test( ], ) -cc_test( +cc_binary( name = "algorithm_benchmark", + testonly = 1, srcs = ["equal_benchmark.cc"], copts = ABSL_TEST_COPTS, linkopts = ABSL_DEFAULT_LINKOPTS, |