| 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 1989 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2000 "safe_browsing/threat_details_cache.cc", | 2000 "safe_browsing/threat_details_cache.cc", |
| 2001 "safe_browsing/threat_details_cache.h", | 2001 "safe_browsing/threat_details_cache.h", |
| 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_db:metadata_proto", | 2011 "//components/safe_browsing_db:metadata_proto", |
| 2011 ] | 2012 ] |
| 2012 if (safe_browsing_mode == 1) { | 2013 if (safe_browsing_mode == 1) { |
| 2013 # "Safe Browsing Full" files in addition to the "basic" ones to use for | 2014 # "Safe Browsing Full" files in addition to the "basic" ones to use for |
| 2014 # full safe browsing. This has some in common with "mobile." | 2015 # full safe browsing. This has some in common with "mobile." |
| 2015 sources += [ | 2016 sources += [ |
| 2016 "download/download_completion_blocker.cc", | 2017 "download/download_completion_blocker.cc", |
| 2017 "download/download_completion_blocker.h", | 2018 "download/download_completion_blocker.h", |
| 2018 "loader/safe_browsing_resource_throttle.cc", | 2019 "loader/safe_browsing_resource_throttle.cc", |
| 2019 "loader/safe_browsing_resource_throttle.h", | 2020 "loader/safe_browsing_resource_throttle.h", |
| (...skipping 2420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4440 # linking all of the test support. | 4441 # linking all of the test support. |
| 4441 static_library("pepper_cdm_test_constants") { | 4442 static_library("pepper_cdm_test_constants") { |
| 4442 testonly = true | 4443 testonly = true |
| 4443 visibility = [ "//chrome/*" ] | 4444 visibility = [ "//chrome/*" ] |
| 4444 sources = [ | 4445 sources = [ |
| 4445 "media/pepper_cdm_test_constants.cc", | 4446 "media/pepper_cdm_test_constants.cc", |
| 4446 "media/pepper_cdm_test_constants.h", | 4447 "media/pepper_cdm_test_constants.h", |
| 4447 ] | 4448 ] |
| 4448 } | 4449 } |
| 4449 } | 4450 } |
| OLD | NEW |