blob: c58a5529c87f38065ba4207e8ad8911a5e37a3c0 [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.
source_set("base") {
sources = [
"build_config.h",
"logging.h",
"scoped_file.h",
"task_runner.h",
"thread_checker.cc",
"thread_checker.h",
"unix_task_runner.cc",
"unix_task_runner.h",
"utils.h",
"weak_ptr.h",
]
if (is_debug) {
deps = [
":debug_crash_stack_trace",
]
}
if (is_android) {
sources += [
"android_task_runner.cc",
"android_task_runner.h",
]
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",
]
}
}
source_set("test_support") {
testonly = true
deps += [ ":base" ]
sources = [
"test/test_task_runner.cc",
"test/test_task_runner.h",
]
}
executable("base_unittests") {
testonly = true
deps += [
":base",
":test_support",
"//buildtools:gmock",
"//buildtools:gtest",
"//buildtools:gtest_main",
]
sources = [
"scoped_file_unittest.cc",
"task_runner_unittest.cc",
"thread_checker_unittest.cc",
"utils_unittest.cc",
"weak_ptr_unittest.cc",
]
}