blob: 9ff61ad1c9c23863cddfcc84901d0c89a6c76b32 [file] [log] [blame]
# Copyright 2022 The Chromium Authors
# 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")
android_library("test_java") {
testonly = true
sources = [ "android/java/src/org/chromium/chrome/browser/autofill/PersonalDataManagerTest.java" ]
deps = [
":test_support_java",
"//base:base_java",
"//chrome/browser/autofill/test:test_support_java",
"//chrome/browser/video_tutorials:test_support_java",
"//chrome/test/android:chrome_java_integration_test_support",
"//third_party/androidx:androidx_appcompat_appcompat_resources_java",
"//third_party/androidx:androidx_test_runner_java",
"//third_party/google-truth:google_truth_java",
"//third_party/junit:junit",
"//url:gurl_java",
]
}
android_library("test_support_java") {
testonly = true
sources = [ "android/java/src/org/chromium/chrome/browser/autofill/AutofillTestHelper.java" ]
public_deps = [
"//base:base_java_test_support",
"//chrome/browser/autofill/android:java",
"//components/autofill/android:main_autofill_java",
"//content/public/test/android:content_java_test_support",
]
}