91 lines
3.6 KiB
Diff
91 lines
3.6 KiB
Diff
diff -up chromium-88.0.4324.11/chrome/common/safe_browsing/BUILD.gn.nounrar chromium-88.0.4324.11/chrome/common/safe_browsing/BUILD.gn
|
|
--- chromium-88.0.4324.11/chrome/common/safe_browsing/BUILD.gn.nounrar 2020-11-19 20:51:23.000000000 -0500
|
|
+++ chromium-88.0.4324.11/chrome/common/safe_browsing/BUILD.gn 2020-11-30 16:09:01.104762930 -0500
|
|
@@ -43,39 +43,6 @@ if (safe_browsing_mode == 1) {
|
|
public_deps = [ "//components/safe_browsing/core:csd_proto" ]
|
|
}
|
|
|
|
- source_set("rar_analyzer") {
|
|
- sources = [
|
|
- "rar_analyzer.cc",
|
|
- "rar_analyzer.h",
|
|
- ]
|
|
-
|
|
- deps = [
|
|
- ":archive_analyzer_results",
|
|
- ":download_type_util",
|
|
- "//base",
|
|
- "//base:i18n",
|
|
- "//components/safe_browsing/core:features",
|
|
- "//components/safe_browsing/core:file_type_policies",
|
|
- "//third_party/unrar:unrar",
|
|
- ]
|
|
-
|
|
- defines = [
|
|
- "_FILE_OFFSET_BITS=64",
|
|
- "LARGEFILE_SOURCE",
|
|
- "RAR_SMP",
|
|
- "SILENT",
|
|
-
|
|
- # The following is set to disable certain macro definitions in the unrar
|
|
- # source code.
|
|
- "CHROMIUM_UNRAR",
|
|
-
|
|
- # Disables exceptions in unrar, replaces them with process termination.
|
|
- "UNRAR_NO_EXCEPTIONS",
|
|
- ]
|
|
-
|
|
- public_deps = [ "//components/safe_browsing/core:csd_proto" ]
|
|
- }
|
|
-
|
|
if (is_mac) {
|
|
source_set("disk_image_type_sniffer_mac") {
|
|
sources = [
|
|
@@ -145,7 +112,6 @@ source_set("safe_browsing") {
|
|
":archive_analyzer_results",
|
|
":binary_feature_extractor",
|
|
":download_type_util",
|
|
- ":rar_analyzer",
|
|
"//components/safe_browsing/core:features",
|
|
]
|
|
|
|
diff -up chromium-88.0.4324.11/chrome/common/safe_browsing/DEPS.nounrar chromium-88.0.4324.11/chrome/common/safe_browsing/DEPS
|
|
--- chromium-88.0.4324.11/chrome/common/safe_browsing/DEPS.nounrar 2020-11-19 20:51:23.000000000 -0500
|
|
+++ chromium-88.0.4324.11/chrome/common/safe_browsing/DEPS 2020-11-30 16:04:30.599454130 -0500
|
|
@@ -1,6 +1,5 @@
|
|
include_rules = [
|
|
"+components/safe_browsing",
|
|
"+third_party/protobuf",
|
|
- "+third_party/unrar",
|
|
"+third_party/zlib",
|
|
]
|
|
diff -up chromium-88.0.4324.11/chrome/services/file_util/BUILD.gn.nounrar chromium-88.0.4324.11/chrome/services/file_util/BUILD.gn
|
|
--- chromium-88.0.4324.11/chrome/services/file_util/BUILD.gn.nounrar 2020-11-19 20:51:24.000000000 -0500
|
|
+++ chromium-88.0.4324.11/chrome/services/file_util/BUILD.gn 2020-11-30 16:04:30.599454130 -0500
|
|
@@ -15,7 +15,6 @@ source_set("file_util") {
|
|
"//base",
|
|
"//chrome/common/safe_browsing",
|
|
"//chrome/common/safe_browsing:archive_analyzer_results",
|
|
- "//chrome/common/safe_browsing:rar_analyzer",
|
|
"//components/safe_browsing:buildflags",
|
|
"//mojo/public/cpp/bindings",
|
|
]
|
|
diff -up chromium-88.0.4324.11/chrome/services/file_util/safe_archive_analyzer.cc.nounrar chromium-88.0.4324.11/chrome/services/file_util/safe_archive_analyzer.cc
|
|
--- chromium-88.0.4324.11/chrome/services/file_util/safe_archive_analyzer.cc.nounrar 2020-11-19 20:51:24.000000000 -0500
|
|
+++ chromium-88.0.4324.11/chrome/services/file_util/safe_archive_analyzer.cc 2020-11-30 16:04:30.599454130 -0500
|
|
@@ -45,10 +45,14 @@ void SafeArchiveAnalyzer::AnalyzeDmgFile
|
|
void SafeArchiveAnalyzer::AnalyzeRarFile(base::File rar_file,
|
|
base::File temporary_file,
|
|
AnalyzeRarFileCallback callback) {
|
|
+#if 0
|
|
DCHECK(rar_file.IsValid());
|
|
|
|
safe_browsing::ArchiveAnalyzerResults results;
|
|
safe_browsing::rar_analyzer::AnalyzeRarFile(
|
|
std::move(rar_file), std::move(temporary_file), &results);
|
|
std::move(callback).Run(results);
|
|
+#else
|
|
+ NOTREACHED();
|
|
+#endif
|
|
}
|