blob: a5fa27543a2bc337ff30122b73818b162787ae7e [file] [log] [blame]
Primiano Tucciff68cac2020-08-06 18:13:17 +02001# Copyright (C) 2020 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import("../../gn/perfetto.gni")
16
17executable("stress_test") {
18 testonly = true
19 sources = [ "stress_test.cc" ]
20 data_deps = [
21 "../../src/perfetto_cmd:perfetto",
22 "../../src/traced/service:traced",
23 ]
24 deps = [
25 ":stress_producer",
26 "../..:libperfetto_client_experimental",
27 "../../gn:default_deps",
28 "../../include/perfetto/tracing",
29 "../../protos/perfetto/trace:zero",
30 "../../src/base",
31 "../../src/base:test_support",
32 "configs",
33 ]
34}
35
36executable("stress_producer") {
37 testonly = true
38 sources = [ "stress_producer.cc" ]
39 deps = [
40 "../..:libperfetto_client_experimental",
41 "../../gn:default_deps",
42 "../../include/perfetto/tracing",
43 "../../protos/perfetto/trace:zero",
44 "../../src/base",
45 "../../src/base:test_support",
46 ]
47}