blob: 7db89edc16617006a2276a0b43587d11e8cc4b65 [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/ftrace_reader:ftrace_reader_demo",
22 "src/ipc/protoc_plugin:ipc_plugin($host_toolchain)",
23 "src/protozero/protoc_plugin($host_toolchain)",
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080024 "tools/ftrace_proto_gen:ftrace_proto_gen",
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",
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080043 "tools/sanitizers_unittests",
Primiano Tucciae2879e2017-09-27 11:02:09 +090044 ]
Primiano Tuccib03ba362017-12-06 09:47:41 +000045}
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080046
Primiano Tuccib03ba362017-12-06 09:47:41 +000047if (!build_with_chromium) {
48 executable("perfetto_benchmarks") {
49 testonly = true
50 deps = [
51 "gn:default_deps",
52 "src/tracing:tracing_benchmarks",
53 ]
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080054 }
Primiano Tucciae2879e2017-09-27 11:02:09 +090055}