blob: 4d8cb5879e571f99bff30d8c9a39dbafa7e3a965 (
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
26
27
28
29
30
31
32
33
34
35
|
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
executable("io_benchmark") {
sources = [ "io_benchmark.cc" ]
deps = [
"//base",
"//base/test:test_support",
]
testonly = true
}
executable("compression_benchmark") {
sources = [ "compression_benchmark.cc" ]
deps = [
"//base",
"//base/test:test_support",
"//third_party/brotli:dec",
"//third_party/brotli:enc",
"//third_party/snappy",
"//third_party/zlib/google:compression_utils",
]
testonly = true
}
executable("sha_benchmark") {
sources = [ "sha_benchmark.cc" ]
deps = [
"//base",
"//base/test:test_support",
"//crypto:crypto",
]
testonly = true
}
|