OLD | NEW |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 source_set("renderer") { | 7 source_set("renderer") { |
8 if (safe_browsing_mode != 0) { | 8 if (safe_browsing_mode != 0) { |
9 sources = [ | 9 sources = [ |
10 "threat_dom_details.cc", | 10 "threat_dom_details.cc", |
11 "threat_dom_details.h", | 11 "threat_dom_details.h", |
12 ] | 12 ] |
13 deps = [ | 13 deps = [ |
14 "//base", | 14 "//base", |
15 "//components/safe_browsing:features", | |
16 "//components/safe_browsing/common:common", | 15 "//components/safe_browsing/common:common", |
17 "//content/public/renderer", | 16 "//content/public/renderer", |
18 "//ipc", | 17 "//ipc", |
19 "//third_party/WebKit/public:blink", | 18 "//third_party/WebKit/public:blink", |
20 "//url/ipc:url_ipc", | 19 "//url/ipc:url_ipc", |
21 ] | 20 ] |
22 } | 21 } |
23 } | 22 } |
24 | 23 |
25 source_set("websocket_sb_handshake_throttle") { | 24 source_set("websocket_sb_handshake_throttle") { |
(...skipping 24 matching lines...) Expand all Loading... |
50 ":websocket_sb_handshake_throttle", | 49 ":websocket_sb_handshake_throttle", |
51 "//base:base", | 50 "//base:base", |
52 "//base/test:test_support", | 51 "//base/test:test_support", |
53 "//components/safe_browsing/common:interfaces", | 52 "//components/safe_browsing/common:interfaces", |
54 "//ipc", | 53 "//ipc", |
55 "//testing/gmock", | 54 "//testing/gmock", |
56 "//testing/gtest", | 55 "//testing/gtest", |
57 "//third_party/WebKit/public:blink", | 56 "//third_party/WebKit/public:blink", |
58 ] | 57 ] |
59 } | 58 } |
OLD | NEW |