blob: 2b8918b321b3359305921f5056c976e31af349d2 [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
15group("all") {
16 testonly = true # allow to build also test targets
17 deps = [
18 ":tests",
19 "//buildtools:protobuf_lite",
Primiano Tuccifd484232017-10-25 00:15:39 +010020 "//buildtools:protoc($host_toolchain)",
Hector Dearman9b062df2017-10-20 13:52:09 +010021 "//libftrace:libftrace_driver",
Primiano Tuccifd484232017-10-25 00:15:39 +010022 "//protozero/src/protoc_plugin($host_toolchain)",
Hector Dearmanbe61adf2017-10-18 15:58:46 +010023 "//tools/ftrace_proto_gen:ftrace_proto_gen",
Primiano Tucciae2879e2017-09-27 11:02:09 +090024 ]
Primiano Tucciae2879e2017-09-27 11:02:09 +090025}
26
27group("tests") {
28 testonly = true
29 deps = [
Primiano Tuccid7d1be02017-10-30 17:41:34 +000030 "//base:base_unittests",
Hector Dearman9b062df2017-10-20 13:52:09 +010031 "//libftrace:libftrace_unittests",
Primiano Tucci97440f42017-10-24 13:27:18 +010032 "//protozero:protozero_unittests",
Hector Dearmanbe61adf2017-10-18 15:58:46 +010033 "//tools/ftrace_proto_gen:ftrace_proto_gen_unittests",
Primiano Tuccib06bc482017-10-23 14:42:09 +010034 "//tools/sanitizers_unittests",
Primiano Tuccice720022017-10-30 12:50:06 +000035 "//tracing:tracing_benchmarks",
36 "//tracing:tracing_unittests",
Primiano Tucciae2879e2017-09-27 11:02:09 +090037 ]
38}