blob: 74b3f5fcdc2f448c4d13aa357759b51b2ea17218 [file] [log] [blame]
# 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/config.gni")
import("//build/config/android/rules.gni")
testonly = true
android_library("component_autofill_provider_java_test_support") {
annotation_processor_deps = [ "//base/android/jni_generator:jni_processor" ]
sources = [
"java/src/org/chromium/components/autofill/AutofillHintsServiceTestHelper.java",
"java/src/org/chromium/components/autofill/AutofillProviderTestHelper.java",
]
deps = [
"//base:base_java",
"//base:base_java_test_support",
"//base:jni_java",
"//components/autofill/android/provider:autofill_aidl",
"//components/autofill/android/provider:java",
"//content/public/android:content_java",
"//third_party/android_deps:androidx_annotation_annotation_java",
]
}
generate_jni("jni_headers") {
sources = [
"java/src/org/chromium/components/autofill/AutofillProviderTestHelper.java",
]
}
source_set("component_autofill_provider_native_test_support") {
sources = [ "autofill_provider_test_helper.cc" ]
deps = [
":jni_headers",
"//base",
"//components/autofill/content/browser",
"//components/autofill/core/browser:test_support",
"//content/public/browser",
]
}