summaryrefslogtreecommitdiff
path: root/chromium/components/safe_browsing/browser/BUILD.gn
blob: 8d7b1880c5066f50e3dc87f6881c6c4040432be1 (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
# 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")

source_set("browser") {
  sources = [
    "safe_browsing_url_request_context_getter.cc",
    "safe_browsing_url_request_context_getter.h",
    "threat_details.cc",
    "threat_details.h",
    "threat_details_cache.cc",
    "threat_details_cache.h",
    "threat_details_history.cc",
    "threat_details_history.h",
  ]

  deps = [
    "//components/data_use_measurement/core:core",
    "//components/history/core/browser:browser",
    "//components/safe_browsing:csd_proto",
    "//components/safe_browsing:safe_browsing",
    "//components/safe_browsing/common:common",
    "//components/security_interstitials/content:security_interstitial_page",
    "//content/public/browser:browser",
    "//net:extras",
  ]
}