blob: a8e5c994cd8c1eb7d59c0f9d4f55bc6701cf668a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 2017 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.
import("//build/config/features.gni")
import("//components/safe_browsing/buildflags.gni")
source_set("file_util") {
sources = [
"file_util_service.cc",
"file_util_service.h",
]
deps = [
"//base",
"//components/safe_browsing:buildflags",
"//mojo/public/cpp/bindings",
]
public_deps = [
"//chrome/services/file_util/public/mojom",
"//mojo/public/cpp/bindings",
"//mojo/public/mojom/base",
]
if (is_chromeos) {
sources += [
"zip_file_creator.cc",
"zip_file_creator.h",
]
deps += [ "//components/services/filesystem/public/mojom" ]
}
if (safe_browsing_mode == 1) {
sources += [
"safe_archive_analyzer.cc",
"safe_archive_analyzer.h",
]
}
}
|