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