| OLD | NEW |
| 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 1991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2002 "safe_browsing/threat_details_history.cc", | 2002 "safe_browsing/threat_details_history.cc", |
| 2003 "safe_browsing/threat_details_history.h", | 2003 "safe_browsing/threat_details_history.h", |
| 2004 "safe_browsing/ui_manager.cc", | 2004 "safe_browsing/ui_manager.cc", |
| 2005 "safe_browsing/ui_manager.h", | 2005 "safe_browsing/ui_manager.h", |
| 2006 ] | 2006 ] |
| 2007 deps += [ | 2007 deps += [ |
| 2008 "//chrome/browser/safe_browsing:chunk_proto", | 2008 "//chrome/browser/safe_browsing:chunk_proto", |
| 2009 "//chrome/common/safe_browsing:proto", | 2009 "//chrome/common/safe_browsing:proto", |
| 2010 "//components/safe_browsing/common:common", | 2010 "//components/safe_browsing/common:common", |
| 2011 "//components/safe_browsing_db:metadata_proto", | 2011 "//components/safe_browsing_db:metadata_proto", |
| 2012 "//components/security_interstitials/content:unsafe_resource", |
| 2012 ] | 2013 ] |
| 2013 if (safe_browsing_mode == 1) { | 2014 if (safe_browsing_mode == 1) { |
| 2014 # "Safe Browsing Full" files in addition to the "basic" ones to use for | 2015 # "Safe Browsing Full" files in addition to the "basic" ones to use for |
| 2015 # full safe browsing. This has some in common with "mobile." | 2016 # full safe browsing. This has some in common with "mobile." |
| 2016 sources += [ | 2017 sources += [ |
| 2017 "download/download_completion_blocker.cc", | 2018 "download/download_completion_blocker.cc", |
| 2018 "download/download_completion_blocker.h", | 2019 "download/download_completion_blocker.h", |
| 2019 "loader/safe_browsing_resource_throttle.cc", | 2020 "loader/safe_browsing_resource_throttle.cc", |
| 2020 "loader/safe_browsing_resource_throttle.h", | 2021 "loader/safe_browsing_resource_throttle.h", |
| 2021 "safe_browsing/browser_feature_extractor.cc", | 2022 "safe_browsing/browser_feature_extractor.cc", |
| (...skipping 2425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4447 # linking all of the test support. | 4448 # linking all of the test support. |
| 4448 static_library("pepper_cdm_test_constants") { | 4449 static_library("pepper_cdm_test_constants") { |
| 4449 testonly = true | 4450 testonly = true |
| 4450 visibility = [ "//chrome/*" ] | 4451 visibility = [ "//chrome/*" ] |
| 4451 sources = [ | 4452 sources = [ |
| 4452 "media/pepper_cdm_test_constants.cc", | 4453 "media/pepper_cdm_test_constants.cc", |
| 4453 "media/pepper_cdm_test_constants.h", | 4454 "media/pepper_cdm_test_constants.h", |
| 4454 ] | 4455 ] |
| 4455 } | 4456 } |
| 4456 } | 4457 } |
| OLD | NEW |