diff options
Diffstat (limited to 'chromium/chrome/browser/password_check')
-rw-r--r-- | chromium/chrome/browser/password_check/android/BUILD.gn | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/chromium/chrome/browser/password_check/android/BUILD.gn b/chromium/chrome/browser/password_check/android/BUILD.gn new file mode 100644 index 00000000000..2a0efaa0999 --- /dev/null +++ b/chromium/chrome/browser/password_check/android/BUILD.gn @@ -0,0 +1,23 @@ +# Copyright 2020 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. + +import("//build/config/android/rules.gni") + +source_set("android") { + sources = [ + "bulk_leak_check_controller_android.cc", + "bulk_leak_check_controller_android.h", + ] + deps = [ "//components/password_manager/core/browser" ] +} + +source_set("unit_tests") { + testonly = true + sources = [ "bulk_leak_check_controller_android_unittest.cc" ] + deps = [ + ":android", + "//testing/gmock", + "//testing/gtest", + ] +} |