| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |