blob: a109991a675e7c8eb9a83b23a1568ace89cd3fc3 [file] [log] [blame]
# Copyright 2021 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
if (is_android) {
import("//build/config/android/config.gni")
import("//build/config/android/rules.gni")
}
group("password_manager") {
public_deps = [ ":backend_factory" ]
}
source_set("backend_factory") {
deps = [ "//components/password_manager/core/browser" ]
if (is_android && enable_chrome_android_internal) {
sources = [ "password_store_android_backend_factory.cc" ]
deps += [
"//chrome/browser/password_manager/android:backend",
"//components/password_manager/core/common:common",
]
} else {
sources = [ "password_store_local_backend_factory.cc" ]
}
}