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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2540563002: Move SafeBrowsingUIManager::UnsafeResource to security_interstitials namespace (Closed)
Patch Set: no need to exclude ios Created 4 years 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 1988 matching lines...) Expand 10 before | Expand all | Expand 10 after
1999 "safe_browsing/threat_details_cache.h", 1999 "safe_browsing/threat_details_cache.h",
2000 "safe_browsing/threat_details_history.cc", 2000 "safe_browsing/threat_details_history.cc",
2001 "safe_browsing/threat_details_history.h", 2001 "safe_browsing/threat_details_history.h",
2002 "safe_browsing/ui_manager.cc", 2002 "safe_browsing/ui_manager.cc",
2003 "safe_browsing/ui_manager.h", 2003 "safe_browsing/ui_manager.h",
2004 ] 2004 ]
2005 deps += [ 2005 deps += [
2006 "//chrome/browser/safe_browsing:chunk_proto", 2006 "//chrome/browser/safe_browsing:chunk_proto",
2007 "//chrome/common/safe_browsing:proto", 2007 "//chrome/common/safe_browsing:proto",
2008 "//components/safe_browsing_db:metadata_proto", 2008 "//components/safe_browsing_db:metadata_proto",
2009 "//components/security_interstitials/content",
2009 ] 2010 ]
2010 if (safe_browsing_mode == 1) { 2011 if (safe_browsing_mode == 1) {
2011 # "Safe Browsing Full" files in addition to the "basic" ones to use for 2012 # "Safe Browsing Full" files in addition to the "basic" ones to use for
2012 # full safe browsing. This has some in common with "mobile." 2013 # full safe browsing. This has some in common with "mobile."
2013 sources += [ 2014 sources += [
2014 "download/download_completion_blocker.cc", 2015 "download/download_completion_blocker.cc",
2015 "download/download_completion_blocker.h", 2016 "download/download_completion_blocker.h",
2016 "loader/safe_browsing_resource_throttle.cc", 2017 "loader/safe_browsing_resource_throttle.cc",
2017 "loader/safe_browsing_resource_throttle.h", 2018 "loader/safe_browsing_resource_throttle.h",
2018 "safe_browsing/browser_feature_extractor.cc", 2019 "safe_browsing/browser_feature_extractor.cc",
(...skipping 2418 matching lines...) Expand 10 before | Expand all | Expand 10 after
4437 # linking all of the test support. 4438 # linking all of the test support.
4438 static_library("pepper_cdm_test_constants") { 4439 static_library("pepper_cdm_test_constants") {
4439 testonly = true 4440 testonly = true
4440 visibility = [ "//chrome/*" ] 4441 visibility = [ "//chrome/*" ]
4441 sources = [ 4442 sources = [
4442 "media/pepper_cdm_test_constants.cc", 4443 "media/pepper_cdm_test_constants.cc",
4443 "media/pepper_cdm_test_constants.h", 4444 "media/pepper_cdm_test_constants.h",
4444 ] 4445 ]
4445 } 4446 }
4446 } 4447 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698