blob: 46aec095c0e61ba545e9179c2f47ade854c82ea2 [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")
Eric Secklera6ba1792019-01-02 12:51:00 +000016import("gn/test.gni")
Primiano Tucci4c5efa42018-10-23 13:15:13 +010017
18if (perfetto_build_standalone || perfetto_build_with_android) {
Florian Mayerf98c9d62018-09-03 16:38:16 +010019 import("//gn/standalone/android.gni")
20} else {
21 import("//build/config/android/config.gni")
22}
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080023
Primiano Tuccia1959712018-05-17 11:01:56 +010024# For use_libfuzzer.
Primiano Tucci4c5efa42018-10-23 13:15:13 +010025if (perfetto_build_standalone || perfetto_build_with_android) {
Primiano Tuccia1959712018-05-17 11:01:56 +010026 import("//gn/standalone/sanitizers/vars.gni")
27} else {
28 import("//build/config/sanitizers/sanitizers.gni")
29}
30
Primiano Tuccif3837d52018-01-10 21:12:41 +000031declare_args() {
32 # Only for local development. When true the binaries (perfetto, traced, ...)
33 # are monolithic and don't use a common shared library. This is mainly to
34 # avoid LD_LIBRARY_PATH dances when testing locally.
35 monolithic_binaries = false
Florian Mayerb64d6b12018-08-30 10:46:30 -070036
37 # libunwindstack requires API level 26 or newer.
Florian Mayera2fae262018-08-31 12:10:01 -070038 should_build_heapprofd =
Primiano Tucci4c5efa42018-10-23 13:15:13 +010039 (perfetto_build_standalone || perfetto_build_with_android) && is_clang &&
40 (is_linux || is_android) &&
41 (!is_android || android_api_level >= 26 || perfetto_build_with_android)
Primiano Tuccif3837d52018-01-10 21:12:41 +000042}
Primiano Tucci4c5efa42018-10-23 13:15:13 +010043assert(!monolithic_binaries || !perfetto_build_with_android)
Primiano Tuccif3837d52018-01-10 21:12:41 +000044
Primiano Tucciae2879e2017-09-27 11:02:09 +090045group("all") {
46 testonly = true # allow to build also test targets
47 deps = [
Eric Secklera6ba1792019-01-02 12:51:00 +000048 ":perfetto_unittests",
Primiano Tucci4f9b6d72017-12-05 20:59:16 +000049 "src/protozero/protoc_plugin($host_toolchain)",
Primiano Tucciae2879e2017-09-27 11:02:09 +090050 ]
Primiano Tucci4c5efa42018-10-23 13:15:13 +010051 if (perfetto_build_standalone || perfetto_build_with_android) {
Primiano Tuccib03ba362017-12-06 09:47:41 +000052 deps += [
Primiano Tucci808d6df2018-03-31 13:24:18 +010053 ":perfetto",
Primiano Tucci808d6df2018-03-31 13:24:18 +010054 ":perfetto_integrationtests",
55 ":traced",
56 ":traced_probes",
Primiano Tuccic5010802018-01-19 17:13:21 +000057 "protos/perfetto/config:merged_config", # For syntax-checking the proto.
Hector Dearmane92c6742018-11-22 21:42:39 +000058 "protos/perfetto/trace:merged_trace", # For syntax-checking the proto.
Oystein Eftevaag067fd5b2018-03-27 12:39:30 -070059 "src/ipc/protoc_plugin:ipc_plugin($host_toolchain)",
Oystein Eftevaag51e06e52018-01-18 11:28:49 -080060 "tools:protoc_helper",
Primiano Tuccib03ba362017-12-06 09:47:41 +000061 ]
Primiano Tucci4c5efa42018-10-23 13:15:13 +010062 if (perfetto_build_standalone) {
Primiano Tucci5968caf2018-08-06 10:31:46 +010063 deps += [
Primiano Tucci4c5efa42018-10-23 13:15:13 +010064 ":perfetto_benchmarks",
Primiano Tucci5968caf2018-08-06 10:31:46 +010065 ":trace_processor",
Primiano Tucci3cd31322018-10-11 20:06:56 +010066 "src/tracing:consumer_api_test",
Primiano Tucci4c5efa42018-10-23 13:15:13 +010067 "test/configs",
68 "tools/ftrace_proto_gen:ftrace_proto_gen",
69 "tools/proto_to_cpp",
Primiano Tucci5968caf2018-08-06 10:31:46 +010070 "tools/trace_to_text",
Hector Dearman499cd602018-11-20 13:02:31 +000071 "tools/trace_to_text:trace_to_text_lite_host($host_toolchain)",
Primiano Tucci5968caf2018-08-06 10:31:46 +010072 ]
Primiano Tucci4c5efa42018-10-23 13:15:13 +010073 if (is_linux || is_android) {
74 deps += [ "tools/skippy" ]
75 }
Florian Mayer2e480712018-12-07 16:25:41 +000076 if (is_fuzzer) {
Primiano Tucci4c5efa42018-10-23 13:15:13 +010077 deps += [ ":fuzzers" ]
78 }
Primiano Tuccia1959712018-05-17 11:01:56 +010079 }
Primiano Tuccib03ba362017-12-06 09:47:41 +000080 }
Primiano Tucciae2879e2017-09-27 11:02:09 +090081}
82
Primiano Tucci3faad742018-05-16 19:30:48 +010083# TODO(primiano): temporary workaround to:
84# 1) Prevent that the UI gets build automatically when doing ninja -C out/xx .
85# 2) Avoid breaking the chrome build, that right now depends on "all".
86group("default") {
87 testonly = true # allow to build also test targets
88 deps = [
89 ":all",
90 ]
91}
92
Primiano Tucci4c5efa42018-10-23 13:15:13 +010093if (perfetto_build_standalone) {
Primiano Tucci3faad742018-05-16 19:30:48 +010094 group("ui") {
95 deps = [
96 "ui",
97 ]
98 }
Primiano Tucci5968caf2018-08-06 10:31:46 +010099
100 # The trace processor shell executable. An interactive shell that allows to
101 # make queries on the trace using the terminal.
102 group("trace_processor") {
103 deps = [
104 "src/trace_processor:trace_processor_shell",
105 ]
106 }
Primiano Tucci3faad742018-05-16 19:30:48 +0100107}
108
Eric Secklera6ba1792019-01-02 12:51:00 +0000109test("perfetto_unittests") {
Primiano Tucciae2879e2017-09-27 11:02:09 +0900110 deps = [
Primiano Tuccib03ba362017-12-06 09:47:41 +0000111 "gn:default_deps",
Florian Mayerd8bd81b2018-01-25 12:49:15 +0000112 "gn:gtest_main",
Hector Dearman6cfec8a2018-03-14 16:54:09 +0000113 "src/base:unittests",
Bruce Dawsonc3e67632018-05-14 14:07:51 +0100114 "src/protozero:unittests",
Oystein Eftevaage5e84fb2018-06-01 17:34:56 -0700115 "src/tracing:unittests",
Primiano Tucciae2879e2017-09-27 11:02:09 +0900116 ]
Primiano Tucci1640ffa2018-05-14 18:25:33 +0100117
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100118 if (perfetto_build_standalone || perfetto_build_with_android) {
Oystein Eftevaag067fd5b2018-03-27 12:39:30 -0700119 deps += [
120 "src/ipc:unittests",
121 "src/perfetto_cmd:unittests",
Primiano Tucci808d6df2018-03-31 13:24:18 +0100122 "src/traced/probes:unittests",
Oystein Eftevaag067fd5b2018-03-27 12:39:30 -0700123 "src/traced/probes/filesystem:unittests",
Primiano Tuccide82dae2018-06-04 16:17:49 +0200124 "src/traced/probes/ftrace:unittests",
Primiano Tucci808d6df2018-03-31 13:24:18 +0100125 "tools/ftrace_proto_gen:unittests",
Oystein Eftevaag067fd5b2018-03-27 12:39:30 -0700126 "tools/sanitizers_unittests",
127 ]
Primiano Tucci931284e2017-12-11 09:23:53 +0000128 }
Florian Mayerb64d6b12018-08-30 10:46:30 -0700129 if (should_build_heapprofd) {
130 # Restrict to clang, as libunwindstack and its dependencies is never
131 # built using GCC in the Android tree.
132 deps += [ "src/profiling/memory:unittests" ]
133 }
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100134 if (perfetto_build_standalone && !is_android) {
Lalit Maganticaed37e2018-06-01 03:03:08 +0100135 deps += [ "src/trace_processor:unittests" ]
136 }
Primiano Tuccib03ba362017-12-06 09:47:41 +0000137}
Oystein Eftevaagdd727e42017-12-05 08:49:55 -0800138
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100139if (perfetto_build_standalone || perfetto_build_with_android) {
Eric Secklera6ba1792019-01-02 12:51:00 +0000140 test("perfetto_integrationtests") {
Lalit Maganti79f2d7b2018-01-23 18:27:33 +0000141 deps = [
142 "gn:default_deps",
Florian Mayerd8bd81b2018-01-25 12:49:15 +0000143 "gn:gtest_main",
Primiano Tuccide82dae2018-06-04 16:17:49 +0200144 "src/traced/probes/ftrace:integrationtests",
Lalit Maganti79f2d7b2018-01-23 18:27:33 +0000145 "test:end_to_end_integrationtests",
146 ]
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100147 if (perfetto_build_standalone && !is_android) {
Hector Dearman7f71d0e2018-08-09 11:26:10 +0100148 deps += [ "src/trace_processor:integrationtests" ]
149 }
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100150 if (perfetto_build_with_android) {
Lalit Maganti0b9a6ac2018-02-16 18:05:06 +0000151 cflags = [ "-DPERFETTO_BUILD_WITH_ANDROID" ]
152 }
Florian Mayer42802492018-12-13 11:00:16 +0000153
154 # TODO(fmayer): Fix in process daemons.
155 if (should_build_heapprofd && is_android && !start_daemons_for_testing) {
156 deps += [ "src/profiling/memory:end_to_end_tests" ]
157 }
Lalit Maganti79f2d7b2018-01-23 18:27:33 +0000158 }
159
Primiano Tuccif3837d52018-01-10 21:12:41 +0000160 if (monolithic_binaries) {
Primiano Tuccibdb2a592018-10-11 15:59:29 +0100161 libperfetto_target_type = "source_set"
Primiano Tuccif3837d52018-01-10 21:12:41 +0000162 } else {
Primiano Tuccibdb2a592018-10-11 15:59:29 +0100163 libperfetto_target_type = "shared_library"
Primiano Tuccif3837d52018-01-10 21:12:41 +0000164 }
165
Primiano Tuccibdb2a592018-10-11 15:59:29 +0100166 target(libperfetto_target_type, "libperfetto") {
Primiano Tucci4e49c022017-12-21 18:22:44 +0100167 deps = [
168 "gn:default_deps",
Primiano Tucci6067e732018-01-08 16:19:40 +0000169 "src/traced/probes",
170 "src/traced/service",
Primiano Tucci3cd31322018-10-11 20:06:56 +0100171 "src/tracing:api",
Primiano Tucci6067e732018-01-08 16:19:40 +0000172 ]
173 }
174
Primiano Tucci3b729102018-01-08 18:16:36 +0000175 # The unprivileged trace daemon that listens for Producer and Consumer
176 # connections, handles the coordination of the tracing sessions and owns the
177 # log buffers.
Primiano Tucci6067e732018-01-08 16:19:40 +0000178 executable("traced") {
179 deps = [
Primiano Tuccibdb2a592018-10-11 15:59:29 +0100180 ":libperfetto",
Primiano Tucci6067e732018-01-08 16:19:40 +0000181 "gn:default_deps",
Primiano Tuccic2eb5102018-05-15 10:40:01 +0100182 "include/perfetto/traced",
Primiano Tucci6067e732018-01-08 16:19:40 +0000183 ]
184 sources = [
185 "src/traced/service/main.cc",
186 ]
187 }
188
Primiano Tucci3b729102018-01-08 18:16:36 +0000189 # The unprivileged daemon that is allowed to access tracefs (for ftrace).
190 # Registers as a Producer on the traced daemon.
Primiano Tucci6067e732018-01-08 16:19:40 +0000191 executable("traced_probes") {
192 deps = [
Primiano Tuccibdb2a592018-10-11 15:59:29 +0100193 ":libperfetto",
Primiano Tucci6067e732018-01-08 16:19:40 +0000194 "gn:default_deps",
Primiano Tuccic2eb5102018-05-15 10:40:01 +0100195 "include/perfetto/traced",
Primiano Tucci6067e732018-01-08 16:19:40 +0000196 ]
197 sources = [
198 "src/traced/probes/main.cc",
Primiano Tucci4e49c022017-12-21 18:22:44 +0100199 ]
200 }
Primiano Tucci3b729102018-01-08 18:16:36 +0000201
202 # The command line client for Perfetto. Allows to configure / start / stop
203 # tracing, acting as a Consumer.
204 executable("perfetto") {
205 deps = [
Primiano Tucci3b729102018-01-08 18:16:36 +0000206 "gn:default_deps",
Hector Dearmanc443a362018-02-28 16:03:56 +0000207 "src/perfetto_cmd",
Primiano Tucci3b729102018-01-08 18:16:36 +0000208 ]
209 sources = [
Hector Dearmanc443a362018-02-28 16:03:56 +0000210 "src/perfetto_cmd/main.cc",
Primiano Tucci3b729102018-01-08 18:16:36 +0000211 ]
Lalit Maganti0b9a6ac2018-02-16 18:05:06 +0000212 if (is_android) {
213 deps += [ "src/base:android_task_runner" ]
214 }
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100215 if (perfetto_build_with_android) {
Primiano Tucci6d848532018-01-17 10:32:33 +0000216 cflags = [ "-DPERFETTO_BUILD_WITH_ANDROID" ]
Primiano Tucci6d848532018-01-17 10:32:33 +0000217 libs = [
218 "binder",
219 "services",
220 "utils",
221 ]
222 }
Primiano Tucci3b729102018-01-08 18:16:36 +0000223 }
Primiano Tucci6aa75572018-03-21 05:33:14 -0700224
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100225 if (perfetto_build_with_android) {
Primiano Tucci21c19d82018-03-29 12:35:08 +0100226 executable("trace_to_text") {
227 testonly = true
228 deps = [
229 "gn:default_deps",
Primiano Tucci20dc8f72018-10-23 12:28:29 +0100230 "tools/trace_to_text:full",
Primiano Tucci21c19d82018-03-29 12:35:08 +0100231 ]
232 }
Primiano Tucci21c19d82018-03-29 12:35:08 +0100233
Primiano Tucci808d6df2018-03-31 13:24:18 +0100234 # This target exports perfetto trace protos in the Android build system,
235 # allowing both host and device targets to implement custom parsers based on
236 # our protos.
237 static_library("perfetto_trace_protos") {
238 deps = [
239 "protos/perfetto/trace:lite",
240 ]
241 }
Primiano Tucci676f0cc2018-12-03 20:03:26 +0100242
243 shared_library("libperfetto_android_internal") {
244 deps = [
245 "gn:default_deps",
246 "src/android_internal",
247 ]
248 }
249 } # if (perfetto_build_with_android)
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100250} # if (perfetto_build_standalone || perfetto_build_with_android)
Oystein Eftevaaga812a942018-03-23 11:52:32 -0700251
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100252if (perfetto_build_with_embedder) {
253 if (build_with_chromium) {
254 libperfetto_target_type = "component"
255 } else {
256 libperfetto_target_type = "source_set"
257 }
258 target(libperfetto_target_type, "libperfetto") {
Primiano Tucci20b760c2018-01-19 12:36:12 +0000259 public_configs = [ "gn:public_config" ]
Oystein Eftevaag5e8a4eb2018-01-09 11:41:58 -0800260 deps = [
261 "src/tracing",
262 ]
Oystein Eftevaaga812a942018-03-23 11:52:32 -0700263 configs -= [ "//build/config/compiler:chromium_code" ]
264 configs += [ "//build/config/compiler:no_chromium_code" ]
265 public_deps = [
266 "include/perfetto/tracing/core",
Oystein Eftevaag6fcedac2018-07-02 12:02:55 -0700267 "protos/perfetto/trace:zero",
268 "protos/perfetto/trace/chrome:zero",
Oystein Eftevaaga812a942018-03-23 11:52:32 -0700269 ]
Oystein Eftevaag5e8a4eb2018-01-09 11:41:58 -0800270 }
Oystein Eftevaaga812a942018-03-23 11:52:32 -0700271}
Primiano Tuccia1959712018-05-17 11:01:56 +0100272
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100273if (perfetto_build_standalone) {
274 executable("perfetto_benchmarks") {
275 testonly = true
276 deps = [
277 "gn:default_deps",
278 "src/traced/probes/ftrace:benchmarks",
279 "src/tracing:tracing_benchmarks",
280 "test:benchmark_main",
281 "test:end_to_end_benchmarks",
282 ]
283 }
284
Primiano Tucci59d6ace2018-09-26 22:24:20 +0100285 group("fuzzers") {
286 testonly = true
287 deps = [
288 "src/ipc:buffered_frame_deserializer_fuzzer",
Florian Mayerc365e362018-10-24 13:21:17 +0100289 "src/profiling/memory:unwinding_fuzzer",
Primiano Tucci59d6ace2018-09-26 22:24:20 +0100290 "src/traced/probes/ftrace:cpu_reader_fuzzer",
291 "test:end_to_end_shared_memory_fuzzer",
292 ]
293 }
Primiano Tuccia1959712018-05-17 11:01:56 +0100294}
Florian Mayerb6a921f2018-10-18 18:55:23 +0100295
Primiano Tucci4c5efa42018-10-23 13:15:13 +0100296if (perfetto_build_with_android) {
Florian Mayerb6a921f2018-10-18 18:55:23 +0100297 # TODO(fmayer): Investigate shared library for common pieces.
298 shared_library("heapprofd_client") {
299 deps = [
300 "src/profiling/memory:malloc_hooks",
301 ]
302 }
Florian Mayer8e7eac42018-11-05 16:04:11 +0000303}
Florian Mayerb6a921f2018-10-18 18:55:23 +0100304
Florian Mayer8e7eac42018-11-05 16:04:11 +0000305if (should_build_heapprofd) {
Florian Mayerb6a921f2018-10-18 18:55:23 +0100306 executable("heapprofd") {
307 deps = [
308 "gn:default_deps",
Florian Mayer4afdd642018-11-13 11:11:04 +0000309 "protos/perfetto/trace:zero",
Florian Mayerb6a921f2018-10-18 18:55:23 +0100310 "src/base",
311 "src/base:unix_socket",
312 "src/profiling/memory:daemon",
313 "src/profiling/memory:wire_protocol",
Florian Mayer8e7eac42018-11-05 16:04:11 +0000314 "src/tracing:ipc",
Florian Mayerb6a921f2018-10-18 18:55:23 +0100315 ]
316 sources = [
317 "src/profiling/memory/main.cc",
318 ]
319 }
320}