blob: a578f64c5a49b44ab129b70b5ad918e3b554e1cc [file] [log] [blame]
# Copyright (C) 2018 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import("../gn/perfetto.gni")
import("//build_overrides/build.gni")
source_set("end_to_end_integrationtests") {
testonly = true
deps = [
":fake_consumer",
":task_runner_thread",
"../gn:default_deps",
"../gn:gtest_deps",
"../protos/perfetto/trace:lite",
"../src/base:base",
"../src/base:test_support",
"../src/traced/probes:ftrace_producer",
"../src/tracing:ipc",
]
sources = [
"end_to_end_integrationtest.cc",
"fake_producer.cc",
"fake_producer.h",
]
if (is_android && !build_with_chromium) {
deps += [ "../src/base:android_task_runner" ]
}
}
if (use_libfuzzer) {
executable("end_to_end_shared_memory_fuzzer") {
sources = [
"end_to_end_shared_memory_fuzzer.cc",
]
testonly = true
deps = [
":fake_consumer",
":task_runner_thread",
"../gn:default_deps",
"../src/base:test_support",
"../src/protozero",
"../src/tracing",
"../src/tracing:ipc",
]
configs += [ "../gn:fuzzer_config" ]
}
}
source_set("fake_consumer") {
testonly = true
deps = [
"../gn:default_deps",
"../gn:gtest_deps",
"../protos/perfetto/trace:lite",
"../src/base:base",
"../src/base:test_support",
]
sources = [
"fake_consumer.cc",
"fake_consumer.h",
]
}
source_set("task_runner_thread") {
testonly = true
deps = [
"../gn:default_deps",
"../src/base:test_support",
]
sources = [
"task_runner_thread.cc",
"task_runner_thread.h",
]
}
if (!build_with_chromium) {
source_set("benchmark_main") {
testonly = true
deps = [
"../../gn:default_deps",
"//buildtools:benchmark",
]
sources = [
"benchmark_main.cc",
]
}
}