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

Side by Side Diff: components/password_manager/core/browser/BUILD.gn

Issue 807503002: Implement throttling logic for fetching affiliation information. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@aff_database
Patch Set: Addressed first round of comments. Created 5 years, 11 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("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 } 9 }
10 10
11 config("password_manager_config") { 11 config("password_manager_config") {
12 # Sync (not supported in Android WebView). 12 # Sync (not supported in Android WebView).
13 if (!is_android || !is_android_webview_build) { 13 if (!is_android || !is_android_webview_build) {
14 defines = [ "PASSWORD_MANAGER_ENABLE_SYNC" ] 14 defines = [ "PASSWORD_MANAGER_ENABLE_SYNC" ]
15 } 15 }
16 } 16 }
17 17
18 static_library("browser") { 18 static_library("browser") {
19 sources = [ 19 sources = [
20 "affiliation_fetch_throttler.cc",
21 "affiliation_fetch_throttler.h",
22 "affiliation_fetch_throttler_delegate.h",
20 "affiliation_fetcher_delegate.h", 23 "affiliation_fetcher_delegate.h",
21 "affiliation_fetcher.cc", 24 "affiliation_fetcher.cc",
22 "affiliation_fetcher.h", 25 "affiliation_fetcher.h",
23 "affiliation_utils.cc", 26 "affiliation_utils.cc",
24 "affiliation_utils.h", 27 "affiliation_utils.h",
25 "browser_save_password_progress_logger.cc", 28 "browser_save_password_progress_logger.cc",
26 "browser_save_password_progress_logger.h", 29 "browser_save_password_progress_logger.h",
27 "log_receiver.h", 30 "log_receiver.h",
28 "log_router.cc", 31 "log_router.cc",
29 "log_router.h", 32 "log_router.h",
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 public_deps = [ 130 public_deps = [
128 ":browser", 131 ":browser",
129 ] 132 ]
130 deps = [ 133 deps = [
131 "//base", 134 "//base",
132 "//components/autofill/core/common", 135 "//components/autofill/core/common",
133 "//testing/gmock", 136 "//testing/gmock",
134 "//testing/gtest", 137 "//testing/gtest",
135 ] 138 ]
136 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698