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

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

Issue 2901213004: Componentize safe_browsing: factor out SafeBrowsingURLRequestContextGetter. (Closed)
Patch Set: cleanup includes Created 3 years, 7 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
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("browser") { 7 source_set("browser") {
8 sources = [ 8 sources = [
9 "safe_browsing_url_request_context_getter.cc",
10 "safe_browsing_url_request_context_getter.h",
9 "threat_details.cc", 11 "threat_details.cc",
10 "threat_details.h", 12 "threat_details.h",
11 "threat_details_cache.cc", 13 "threat_details_cache.cc",
12 "threat_details_cache.h", 14 "threat_details_cache.h",
13 "threat_details_history.cc", 15 "threat_details_history.cc",
14 "threat_details_history.h", 16 "threat_details_history.h",
15 ] 17 ]
16 18
17 deps = [ 19 deps = [
18 "//components/data_use_measurement/core:core", 20 "//components/data_use_measurement/core:core",
19 "//components/history/core/browser:browser", 21 "//components/history/core/browser:browser",
20 "//components/safe_browsing:csd_proto", 22 "//components/safe_browsing:csd_proto",
21 "//components/safe_browsing:safe_browsing", 23 "//components/safe_browsing:safe_browsing",
22 "//components/safe_browsing/common:common", 24 "//components/safe_browsing/common:common",
23 "//components/security_interstitials/content:security_interstitial_page", 25 "//components/security_interstitials/content:security_interstitial_page",
24 "//content/public/browser:browser", 26 "//content/public/browser:browser",
27 "//net:extras",
25 ] 28 ]
26 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698