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

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 ambiguity with pow() on Android. Created 5 years, 10 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_backend.cc", 20 "affiliation_backend.cc",
21 "affiliation_backend.h", 21 "affiliation_backend.h",
22 "affiliation_database.cc", 22 "affiliation_database.cc",
23 "affiliation_database.h", 23 "affiliation_database.h",
24 "affiliation_fetch_throttler.cc",
25 "affiliation_fetch_throttler.h",
26 "affiliation_fetch_throttler_delegate.h",
24 "affiliation_fetcher_delegate.h", 27 "affiliation_fetcher_delegate.h",
25 "affiliation_fetcher.cc", 28 "affiliation_fetcher.cc",
26 "affiliation_fetcher.h", 29 "affiliation_fetcher.h",
27 "affiliation_service.cc", 30 "affiliation_service.cc",
28 "affiliation_service.h", 31 "affiliation_service.h",
29 "affiliation_utils.cc", 32 "affiliation_utils.cc",
30 "affiliation_utils.h", 33 "affiliation_utils.h",
31 "browser_save_password_progress_logger.cc", 34 "browser_save_password_progress_logger.cc",
32 "browser_save_password_progress_logger.h", 35 "browser_save_password_progress_logger.h",
33 "log_receiver.h", 36 "log_receiver.h",
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 public_deps = [ 139 public_deps = [
137 ":browser", 140 ":browser",
138 ] 141 ]
139 deps = [ 142 deps = [
140 "//base", 143 "//base",
141 "//components/autofill/core/common", 144 "//components/autofill/core/common",
142 "//testing/gmock", 145 "//testing/gmock",
143 "//testing/gtest", 146 "//testing/gtest",
144 ] 147 ]
145 } 148 }
OLDNEW
« no previous file with comments | « components/password_manager.gypi ('k') | components/password_manager/core/browser/affiliation_fetch_throttler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698