blob: 0d3c7c2666c9de280fee86143436cdf1583c8d83 [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 Tuccib03ba362017-12-06 09:47:41 +000020 ":perfetto_tests",
Primiano Tucci4f9b6d72017-12-05 20:59:16 +000021 "src/ipc/protoc_plugin:ipc_plugin($host_toolchain)",
22 "src/protozero/protoc_plugin($host_toolchain)",
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080023 "tools/ftrace_proto_gen:ftrace_proto_gen",
Primiano Tucci5fec9212017-12-11 23:08:40 +000024 "tools/proto_to_cpp",
Primiano Tucciae2879e2017-09-27 11:02:09 +090025 ]
Primiano Tuccib03ba362017-12-06 09:47:41 +000026 if (!build_with_chromium) {
27 deps += [
28 ":perfetto_benchmarks",
29 "src/ftrace_reader:ftrace_reader_integrationtests",
30 ]
31 }
Primiano Tucciae2879e2017-09-27 11:02:09 +090032}
33
Primiano Tuccib03ba362017-12-06 09:47:41 +000034executable("perfetto_tests") {
Primiano Tucciae2879e2017-09-27 11:02:09 +090035 testonly = true
36 deps = [
Primiano Tuccib03ba362017-12-06 09:47:41 +000037 "gn:default_deps",
38 "src/base:base_unittests",
Primiano Tucci4f9b6d72017-12-05 20:59:16 +000039 "src/ftrace_reader:ftrace_reader_unittests",
40 "src/ipc:perfetto_ipc_unittests",
41 "src/protozero:protozero_unittests",
42 "src/tracing:tracing_unittests",
Primiano Tucciae2879e2017-09-27 11:02:09 +090043 ]
Primiano Tucci931284e2017-12-11 09:23:53 +000044 if (!build_with_chromium) {
45 deps += [ "tools/sanitizers_unittests" ]
46 }
Primiano Tuccib03ba362017-12-06 09:47:41 +000047}
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080048
Primiano Tuccib03ba362017-12-06 09:47:41 +000049if (!build_with_chromium) {
50 executable("perfetto_benchmarks") {
51 testonly = true
52 deps = [
53 "gn:default_deps",
54 "src/tracing:tracing_benchmarks",
55 ]
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080056 }
Primiano Tucciae2879e2017-09-27 11:02:09 +090057}