mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 15:32:10 +08:00
d5ead4d70f
Unreferenced, and not working at all in Crashpad-standalone. Copied from Chromium at 52a9831d81f2099ef9f50fcdaca5853019262c35 to have a point where a roll back into Chromium should be a no-op (with Chromium's build/secondary/third_party/crashpad/... removed). I'm not sure what we want to do about the various gni references into Chromium (e.g. //build/config/sanitizers/sanitizers.gni, //testing/test.gni, etc.) but I guess the sooner they live in Crashpad rather than in Chromium the sooner we can figure out the sort of knobs and dials we need. Bug: crashpad:79 Change-Id: Id99c29123bcd4174ee2bcc128c2be87e3c94fa3f Reviewed-on: https://chromium-review.googlesource.com/777819 Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Scott Graham <scottmg@chromium.org>
156 lines
3.4 KiB
Plaintext
156 lines
3.4 KiB
Plaintext
# Copyright 2017 The Crashpad Authors. All rights reserved.
|
|
#
|
|
# 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("//testing/test.gni")
|
|
|
|
static_library("test") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"errors.cc",
|
|
"errors.h",
|
|
"file.cc",
|
|
"file.h",
|
|
"filesystem.cc",
|
|
"filesystem.h",
|
|
"gtest_death_check.h",
|
|
"gtest_disabled.cc",
|
|
"gtest_disabled.h",
|
|
"hex_string.cc",
|
|
"hex_string.h",
|
|
"mac/dyld.cc",
|
|
"mac/dyld.h",
|
|
"mac/mach_errors.cc",
|
|
"mac/mach_errors.h",
|
|
"mac/mach_multiprocess.cc",
|
|
"mac/mach_multiprocess.h",
|
|
"main_arguments.cc",
|
|
"main_arguments.h",
|
|
"multiprocess.h",
|
|
"multiprocess_exec.h",
|
|
"multiprocess_exec_posix.cc",
|
|
"multiprocess_exec_win.cc",
|
|
"multiprocess_posix.cc",
|
|
"scoped_module_handle.cc",
|
|
"scoped_module_handle.h",
|
|
"scoped_temp_dir.cc",
|
|
"scoped_temp_dir.h",
|
|
"scoped_temp_dir_posix.cc",
|
|
"scoped_temp_dir_win.cc",
|
|
"test_paths.cc",
|
|
"test_paths.h",
|
|
"win/child_launcher.cc",
|
|
"win/child_launcher.h",
|
|
"win/win_child_process.cc",
|
|
"win/win_child_process.h",
|
|
"win/win_multiprocess.cc",
|
|
"win/win_multiprocess.h",
|
|
"win/win_multiprocess_with_temp_dir.cc",
|
|
"win/win_multiprocess_with_temp_dir.h",
|
|
]
|
|
|
|
public_configs = [ "//third_party/crashpad/crashpad:crashpad_config" ]
|
|
|
|
defines = [ "CRASHPAD_IN_CHROMIUM" ]
|
|
|
|
data = [
|
|
"test_paths_test_data_root.txt",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//testing/gtest",
|
|
"//third_party/crashpad/crashpad/compat",
|
|
"//third_party/crashpad/crashpad/snapshot",
|
|
"//third_party/crashpad/crashpad/util",
|
|
]
|
|
|
|
if (is_mac) {
|
|
libs = [ "bsm" ]
|
|
}
|
|
}
|
|
|
|
source_set("test_test") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"hex_string_test.cc",
|
|
"mac/mach_multiprocess_test.cc",
|
|
"main_arguments_test.cc",
|
|
"multiprocess_exec_test.cc",
|
|
"scoped_temp_dir_test.cc",
|
|
"test_paths_test.cc",
|
|
"win/win_child_process_test.cc",
|
|
"win/win_multiprocess_test.cc",
|
|
]
|
|
|
|
if (!is_win) {
|
|
sources += [ "multiprocess_posix_test.cc" ]
|
|
}
|
|
|
|
deps = [
|
|
":test",
|
|
"//base",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
"//third_party/crashpad/crashpad/compat",
|
|
"//third_party/crashpad/crashpad/util",
|
|
]
|
|
|
|
data_deps = [
|
|
":crashpad_test_test_multiprocess_exec_test_child",
|
|
]
|
|
}
|
|
|
|
executable("crashpad_test_test_multiprocess_exec_test_child") {
|
|
sources = [
|
|
"multiprocess_exec_test_child.cc",
|
|
]
|
|
}
|
|
|
|
static_library("gmock_main") {
|
|
testonly = true
|
|
sources = [
|
|
"gtest_main.cc",
|
|
]
|
|
defines = [
|
|
"CRASHPAD_IN_CHROMIUM",
|
|
"CRASHPAD_TEST_LAUNCHER_GMOCK",
|
|
]
|
|
deps = [
|
|
":test",
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
]
|
|
}
|
|
|
|
static_library("gtest_main") {
|
|
testonly = true
|
|
sources = [
|
|
"gtest_main.cc",
|
|
]
|
|
defines = [
|
|
"CRASHPAD_IN_CHROMIUM",
|
|
"CRASHPAD_TEST_LAUNCHER_GTEST",
|
|
]
|
|
deps = [
|
|
":test",
|
|
"//base",
|
|
"//base/test:test_support",
|
|
"//testing/gtest",
|
|
]
|
|
}
|