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

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: Fix header guards. Created 6 years 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_database.cc", 20 "affiliation_database.cc",
21 "affiliation_database.h", 21 "affiliation_database.h",
22 "affiliation_fetch_throttler.cc",
23 "affiliation_fetch_throttler.h",
22 "affiliation_fetcher_delegate.h", 24 "affiliation_fetcher_delegate.h",
23 "affiliation_fetcher.cc", 25 "affiliation_fetcher.cc",
24 "affiliation_fetcher.h", 26 "affiliation_fetcher.h",
25 "affiliation_utils.cc", 27 "affiliation_utils.cc",
26 "affiliation_utils.h", 28 "affiliation_utils.h",
27 "browser_save_password_progress_logger.cc", 29 "browser_save_password_progress_logger.cc",
28 "browser_save_password_progress_logger.h", 30 "browser_save_password_progress_logger.h",
29 "credential_manager_dispatcher.h", 31 "credential_manager_dispatcher.h",
30 "log_receiver.h", 32 "log_receiver.h",
31 "log_router.cc", 33 "log_router.cc",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 public_deps = [ 132 public_deps = [
131 ":browser", 133 ":browser",
132 ] 134 ]
133 deps = [ 135 deps = [
134 "//base", 136 "//base",
135 "//components/autofill/core/common", 137 "//components/autofill/core/common",
136 "//testing/gmock", 138 "//testing/gmock",
137 "//testing/gtest", 139 "//testing/gtest",
138 ] 140 ]
139 } 141 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698