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

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

Issue 1110723002: Split to SafeBrowsingDatabaseManager into Local* and Remote*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Respond to review. Tweak comments and list initializer. Created 5 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 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 9
10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 "//chrome/browser/safe_browsing:chunk_proto", 439 "//chrome/browser/safe_browsing:chunk_proto",
440 "//chrome/browser/safe_browsing:metadata_proto", 440 "//chrome/browser/safe_browsing:metadata_proto",
441 "//chrome/browser/safe_browsing:report_proto", 441 "//chrome/browser/safe_browsing:report_proto",
442 ] 442 ]
443 if (safe_browsing_mode == 1) { 443 if (safe_browsing_mode == 1) {
444 sources += 444 sources +=
445 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources, 445 rebase_path(gypi_values.chrome_browser_safe_browsing_full_sources,
446 ".", 446 ".",
447 "//chrome") 447 "//chrome")
448 deps += [ "//chrome/common/safe_browsing:proto" ] 448 deps += [ "//chrome/common/safe_browsing:proto" ]
449 } else if (safe_browsing_mode == 3) {
450 sources += rebase_path(
451 gypi_values.chrome_browser_safe_browsing_mobile_extended_sources,
452 ".",
453 "//chrome")
449 } 454 }
450 } 455 }
451 456
452 if (is_linux) { 457 if (is_linux) {
453 deps += [ 458 deps += [
454 "//device/media_transfer_protocol", 459 "//device/media_transfer_protocol",
455 "//device/udev_linux", 460 "//device/udev_linux",
456 ] 461 ]
457 } 462 }
458 if (is_linux && !is_chromeos) { 463 if (is_linux && !is_chromeos) {
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
1133 ] 1138 ]
1134 } 1139 }
1135 1140
1136 if (enable_wifi_bootstrapping) { 1141 if (enable_wifi_bootstrapping) {
1137 sources += [ 1142 sources += [
1138 "local_discovery/wifi/mock_wifi_manager.cc", 1143 "local_discovery/wifi/mock_wifi_manager.cc",
1139 "local_discovery/wifi/mock_wifi_manager.h", 1144 "local_discovery/wifi/mock_wifi_manager.h",
1140 ] 1145 ]
1141 } 1146 }
1142 } 1147 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698