Index: chrome_elf/BUILD.gn |
diff --git a/chrome_elf/BUILD.gn b/chrome_elf/BUILD.gn |
index 8d859f0fbb775332a935692f3e207544313dc8c7..5847280471aa82b4c74a408d8ae86f65376eebd6 100644 |
--- a/chrome_elf/BUILD.gn |
+++ b/chrome_elf/BUILD.gn |
@@ -35,7 +35,6 @@ shared_library("chrome_elf") { |
] |
deps = [ |
":blacklist", |
- ":breakpad", |
":chrome_elf_manifest", |
":chrome_elf_resources", |
":common", |
@@ -44,7 +43,8 @@ shared_library("chrome_elf") { |
"//chrome/install_static:install_static_util", |
"//components/crash/content/app", |
"//components/crash/core/common", |
- "//content/public/common:result_codes", |
+ "//content/public/common:result_codes", |
+ "//third_party/crashpad/crashpad/client:client", |
] |
configs += [ "//build/config/win:windowed" ] |
configs -= [ "//build/config/win:console" ] |
@@ -87,21 +87,6 @@ source_set("common") { |
] |
} |
-source_set("breakpad") { |
- include_dirs = [ "$target_gen_dir" ] |
- sources = [ |
- "breakpad.cc", |
- "breakpad.h", |
- ] |
- deps = [ |
- ":common", |
- "//base", |
- "//breakpad:breakpad_handler", |
- "//chrome/common:version_header", |
- "//chrome/install_static:install_static_util", |
- ] |
-} |
- |
source_set("dll_hash") { |
deps = [ |
"//base", |
@@ -129,16 +114,19 @@ static_library("blacklist") { |
"blacklist/blacklist.h", |
"blacklist/blacklist_interceptions.cc", |
"blacklist/blacklist_interceptions.h", |
+ "blacklist/crashpad_helper.cc", |
+ "blacklist/crashpad_helper.h", |
] |
public_deps = [ |
"//sandbox", |
] |
deps = [ |
- ":breakpad", |
":common", |
":constants", |
"//base", |
"//chrome/install_static:install_static_util", |
+ "//components/crash/content/app", |
+ "//third_party/crashpad/crashpad/client:client", |
] |
} |