blob: 512934ea76bb9882acdf696a876cec528e151c0c [file] [log] [blame]
Primiano Tucciae2879e2017-09-27 11:02:09 +09001# Copyright (C) 2017 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
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080015import("gn/perfetto.gni")
16
Primiano Tucciae2879e2017-09-27 11:02:09 +090017group("all") {
18 testonly = true # allow to build also test targets
19 deps = [
Primiano Tucci3b729102018-01-08 18:16:36 +000020 ":perfetto",
Primiano Tuccib03ba362017-12-06 09:47:41 +000021 ":perfetto_tests",
Primiano Tucci3b729102018-01-08 18:16:36 +000022 ":traced",
23 ":traced_probes",
Primiano Tucci4f9b6d72017-12-05 20:59:16 +000024 "src/ipc/protoc_plugin:ipc_plugin($host_toolchain)",
25 "src/protozero/protoc_plugin($host_toolchain)",
Primiano Tucci6067e732018-01-08 16:19:40 +000026 "src/tracing:consumer_cmd",
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080027 "tools/ftrace_proto_gen:ftrace_proto_gen",
Primiano Tucci5fec9212017-12-11 23:08:40 +000028 "tools/proto_to_cpp",
Primiano Tucciae2879e2017-09-27 11:02:09 +090029 ]
Primiano Tuccib03ba362017-12-06 09:47:41 +000030 if (!build_with_chromium) {
31 deps += [
32 ":perfetto_benchmarks",
33 "src/ftrace_reader:ftrace_reader_integrationtests",
34 ]
35 }
Primiano Tucciae2879e2017-09-27 11:02:09 +090036}
37
Primiano Tuccib03ba362017-12-06 09:47:41 +000038executable("perfetto_tests") {
Primiano Tucciae2879e2017-09-27 11:02:09 +090039 testonly = true
40 deps = [
Primiano Tuccib03ba362017-12-06 09:47:41 +000041 "gn:default_deps",
42 "src/base:base_unittests",
Primiano Tucci4f9b6d72017-12-05 20:59:16 +000043 "src/ftrace_reader:ftrace_reader_unittests",
44 "src/ipc:perfetto_ipc_unittests",
45 "src/protozero:protozero_unittests",
46 "src/tracing:tracing_unittests",
Primiano Tucciae2879e2017-09-27 11:02:09 +090047 ]
Primiano Tucci931284e2017-12-11 09:23:53 +000048 if (!build_with_chromium) {
49 deps += [ "tools/sanitizers_unittests" ]
50 }
Primiano Tuccib03ba362017-12-06 09:47:41 +000051}
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080052
Primiano Tuccib03ba362017-12-06 09:47:41 +000053if (!build_with_chromium) {
54 executable("perfetto_benchmarks") {
55 testonly = true
56 deps = [
57 "gn:default_deps",
58 "src/tracing:tracing_benchmarks",
59 ]
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080060 }
Primiano Tucci4e49c022017-12-21 18:22:44 +010061
Primiano Tucci6067e732018-01-08 16:19:40 +000062 shared_library("libtraced_shared") {
Primiano Tucci4e49c022017-12-21 18:22:44 +010063 deps = [
64 "gn:default_deps",
Primiano Tucci3b729102018-01-08 18:16:36 +000065 "src/traced/perfetto_cmd",
Primiano Tucci6067e732018-01-08 16:19:40 +000066 "src/traced/probes",
67 "src/traced/service",
68 ]
69 }
70
Primiano Tucci3b729102018-01-08 18:16:36 +000071 # The unprivileged trace daemon that listens for Producer and Consumer
72 # connections, handles the coordination of the tracing sessions and owns the
73 # log buffers.
Primiano Tucci6067e732018-01-08 16:19:40 +000074 executable("traced") {
75 deps = [
76 ":libtraced_shared",
77 "gn:default_deps",
78 ]
79 sources = [
80 "src/traced/service/main.cc",
81 ]
82 }
83
Primiano Tucci3b729102018-01-08 18:16:36 +000084 # The unprivileged daemon that is allowed to access tracefs (for ftrace).
85 # Registers as a Producer on the traced daemon.
Primiano Tucci6067e732018-01-08 16:19:40 +000086 executable("traced_probes") {
87 deps = [
88 ":libtraced_shared",
89 "gn:default_deps",
90 ]
91 sources = [
92 "src/traced/probes/main.cc",
Primiano Tucci4e49c022017-12-21 18:22:44 +010093 ]
94 }
Primiano Tucci3b729102018-01-08 18:16:36 +000095
96 # The command line client for Perfetto. Allows to configure / start / stop
97 # tracing, acting as a Consumer.
98 executable("perfetto") {
99 deps = [
100 ":libtraced_shared",
101 "gn:default_deps",
102 ]
103 sources = [
104 "src/traced/perfetto_cmd/main.cc",
105 ]
106 }
Primiano Tucciae2879e2017-09-27 11:02:09 +0900107}