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

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

Issue 2450993003: Componentize safe_browsing [1]: create component, move messages, constants and switches. (Closed)
Patch Set: address Nathan's comments Created 4 years, 1 month 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 1962 matching lines...) Expand 10 before | Expand all | Expand 10 after
1973 "safe_browsing/threat_details_cache.cc", 1973 "safe_browsing/threat_details_cache.cc",
1974 "safe_browsing/threat_details_cache.h", 1974 "safe_browsing/threat_details_cache.h",
1975 "safe_browsing/threat_details_history.cc", 1975 "safe_browsing/threat_details_history.cc",
1976 "safe_browsing/threat_details_history.h", 1976 "safe_browsing/threat_details_history.h",
1977 "safe_browsing/ui_manager.cc", 1977 "safe_browsing/ui_manager.cc",
1978 "safe_browsing/ui_manager.h", 1978 "safe_browsing/ui_manager.h",
1979 ] 1979 ]
1980 deps += [ 1980 deps += [
1981 "//chrome/browser/safe_browsing:chunk_proto", 1981 "//chrome/browser/safe_browsing:chunk_proto",
1982 "//chrome/common/safe_browsing:proto", 1982 "//chrome/common/safe_browsing:proto",
1983 "//components/safe_browsing/common:common",
1983 "//components/safe_browsing_db:metadata_proto", 1984 "//components/safe_browsing_db:metadata_proto",
1984 ] 1985 ]
1985 if (safe_browsing_mode == 1) { 1986 if (safe_browsing_mode == 1) {
1986 # "Safe Browsing Full" files in addition to the "basic" ones to use for 1987 # "Safe Browsing Full" files in addition to the "basic" ones to use for
1987 # full safe browsing. This has some in common with "mobile." 1988 # full safe browsing. This has some in common with "mobile."
1988 sources += [ 1989 sources += [
1989 "download/download_completion_blocker.cc", 1990 "download/download_completion_blocker.cc",
1990 "download/download_completion_blocker.h", 1991 "download/download_completion_blocker.h",
1991 "loader/safe_browsing_resource_throttle.cc", 1992 "loader/safe_browsing_resource_throttle.cc",
1992 "loader/safe_browsing_resource_throttle.h", 1993 "loader/safe_browsing_resource_throttle.h",
(...skipping 2384 matching lines...) Expand 10 before | Expand all | Expand 10 after
4377 # linking all of the test support. 4378 # linking all of the test support.
4378 static_library("pepper_cdm_test_constants") { 4379 static_library("pepper_cdm_test_constants") {
4379 testonly = true 4380 testonly = true
4380 visibility = [ "//chrome/*" ] 4381 visibility = [ "//chrome/*" ]
4381 sources = [ 4382 sources = [
4382 "media/pepper_cdm_test_constants.cc", 4383 "media/pepper_cdm_test_constants.cc",
4383 "media/pepper_cdm_test_constants.h", 4384 "media/pepper_cdm_test_constants.h",
4384 ] 4385 ]
4385 } 4386 }
4386 } 4387 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698