mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
39 lines
989 B
Plaintext
39 lines
989 B
Plaintext
# Copyright 2018 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
source_set("crash_keys") {
|
|
sources = [
|
|
"crash_keys.cc",
|
|
"crash_keys.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base:base",
|
|
"//third_party/crashpad/crashpad/client:client",
|
|
]
|
|
}
|
|
|
|
source_set("crashpad_lib") {
|
|
sources = [
|
|
"crash_client.h",
|
|
"crash_reporter.h",
|
|
"crashpad_crash_client.cc",
|
|
"crashpad_crash_client.h",
|
|
"crashpad_crash_reporter.cc",
|
|
]
|
|
|
|
deps = [
|
|
":crash_keys",
|
|
"//base:base",
|
|
"//chrome/chrome_cleaner/chrome_utils:chrome_util_lib",
|
|
"//chrome/chrome_cleaner/constants:common_strings",
|
|
"//chrome/chrome_cleaner/logging:common",
|
|
"//chrome/chrome_cleaner/os:common_os",
|
|
"//chrome/chrome_cleaner/settings:settings",
|
|
"//chrome/chrome_cleaner/settings:settings_types",
|
|
"//third_party/crashpad/crashpad/client",
|
|
"//third_party/crashpad/crashpad/handler",
|
|
]
|
|
}
|