summaryrefslogtreecommitdiff
path: root/chromium/components/safe_browsing/BUILD.gn
blob: 5fba67781294c311fcd118110711f53755b9e2fd (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright 2016 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("//third_party/protobuf/proto_library.gni")

proto_library("csd_proto") {
  sources = [
    "proto/csd.proto",
  ]
}

proto_library("webui_proto") {
  sources = [
    "proto/webui.proto",
  ]
}

source_set("safe_browsing") {
  sources = [
    "base_blocking_page.cc",
    "base_blocking_page.h",
    "base_ui_manager.cc",
    "base_ui_manager.h",
  ]
  public_deps = [
    "//components/security_interstitials/content:security_interstitial_page",
  ]
  deps = [
    ":base_ping_manager",
    ":features",
    "//base:base",
    "//base:i18n",
    "//components/safe_browsing/common:common",
    "//components/safe_browsing/common:safe_browsing_prefs",
    "//components/safe_browsing/db:database_manager",
    "//components/safe_browsing/web_ui:constants",
    "//components/security_interstitials/core:core",
    "//content/public/browser:browser",
    "//content/public/common:common",
    "//net:net",
  ]
}

static_library("base_ping_manager") {
  sources = [
    "base_ping_manager.cc",
    "base_ping_manager.h",
  ]

  public_deps = [
    "//google_apis:google_apis",
  ]

  deps = [
    "//base:base",
    "//components/data_use_measurement/core:core",
    "//components/safe_browsing/db:hit_report",
    "//components/safe_browsing/db:util",
    "//content/public/browser:browser",
    "//net:net",
  ]
}

source_set("base_ping_manager_unittest") {
  testonly = true
  sources = [
    "base_ping_manager_unittest.cc",
  ]

  deps = [
    ":base_ping_manager",
    "//base:base",
    "//net:net",
    "//net:test_support",
    "//testing/gtest",
  ]
}

static_library("features") {
  sources = [
    "features.cc",
    "features.h",
  ]

  deps = [
    "//base:base",
  ]
}