blob: c8d5f874127bdf1e85c5d19dc6a11e687947c68a [file] [log] [blame]
# Copyright (C) 2017 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("base") {
deps = [
"../../gn:default_deps",
]
public_deps = [
"../../include/perfetto/base",
]
sources = [
"page_allocator.cc",
"thread_checker.cc",
"unix_task_runner.cc",
]
if (is_linux || is_android) {
sources += [ "watchdog.cc" ]
}
if (is_debug) {
deps += [ ":debug_crash_stack_trace" ]
}
}
# The "android_task_runner" should be depended on only by targets that
# explicitly need it, as it pulls in a dependency on libandroid.so that in turn
# pulls dozen of other .so(s).
if (is_android && !build_with_chromium) {
source_set("android_task_runner") {
deps = [
":base",
"../../gn:default_deps",
]
sources = [
"android_task_runner.cc",
]
all_dependent_configs = [ ":android_config" ]
}
config("android_config") {
libs = [ "android" ]
}
}
if (is_debug) {
source_set("debug_crash_stack_trace") {
sources = [
"debug_crash_stack_trace.cc",
]
cflags = [
"-Wno-deprecated-dynamic-exception-spec",
"-Wno-disabled-macro-expansion",
]
deps = [
"../../gn:default_deps",
]
}
}
source_set("test_support") {
testonly = true
deps = [
":base",
"../../gn:default_deps",
"../../gn:gtest_deps",
]
sources = [
"test/test_task_runner.cc",
"test/test_task_runner.h",
"test/vm_test_utils.cc",
"test/vm_test_utils.h",
]
}
source_set("base_unittests") {
testonly = true
deps = [
":base",
":test_support",
"../../gn:default_deps",
"../../gn:gtest_deps",
]
if (is_android && !build_with_chromium) {
deps += [ ":android_task_runner" ]
}
sources = [
"page_allocator_unittest.cc",
"scoped_file_unittest.cc",
"task_runner_unittest.cc",
"thread_checker_unittest.cc",
"utils_unittest.cc",
"weak_ptr_unittest.cc",
]
if (is_linux || is_android) {
sources += [ "watchdog_unittest.cc" ]
}
}