Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(183)

Side by Side Diff: components/safe_browsing/renderer/BUILD.gn

Issue 2756933003: Componentize safe_browsing: move renderer/ reporting part for WebView. (Closed)
Patch Set: remove tab Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/features.gni")
6
7 source_set("renderer") {
8 if (safe_browsing_mode != 0) {
Nathan Parker 2017/03/18 00:15:12 note: I _think_ this ==0 only for iOS, and I'm not
timvolodine 2017/03/20 12:53:38 Acknowledged.
9 sources = [
10 "threat_dom_details.cc",
11 "threat_dom_details.h",
12 ]
13 deps = [
14 "//base",
15 "//components/safe_browsing/common:common",
16 "//content/public/renderer",
17 "//ipc",
18 "//third_party/WebKit/public:blink",
19 "//url/ipc:url_ipc",
20 ]
21 if (is_win) {
22 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug. com/702773)
23 }
24 }
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698