blob: aef9c9ab9617cd60bc9bc2300cc743a0c1a61bef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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("triggers") {
if (safe_browsing_mode != 0) {
sources = [
"trigger_manager.cc",
"trigger_manager.h",
]
deps = [
"//base:base",
"//components/safe_browsing:safe_browsing",
"//components/safe_browsing/browser:browser",
"//components/security_interstitials/content:security_interstitial_page",
"//content/public/browser:browser",
]
}
}
|