blob: 97e42eb1fc14efe470dcd3fd30fc05ac4ecfa04f [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("//build_overrides/build.gni")
source_set("end_to_end_integrationtests") {
testonly = true
deps = [
":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_consumer.cc",
"fake_consumer.h",
"fake_producer.cc",
"fake_producer.h",
]
if (is_android && !build_with_chromium) {
deps += [ "../src/base:android_task_runner" ]
}
}
source_set("task_runner_thread") {
testonly = true
deps = [
"../gn:default_deps",
"../src/base:test_task_runner",
]
sources = [
"task_runner_thread.cc",
"task_runner_thread.h",
]
}