# Copyright 2020 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") import("//third_party/jni_zero/jni_zero.gni") generate_jni("jni_headers") { sources = [ "java/src/org/chromium/components/prefs/PrefService.java" ] } android_library("java") { srcjar_deps = [ ":jni_headers" ] sources = [ "java/src/org/chromium/components/prefs/PrefService.java" ] deps = [ "//build/android:build_java", "//third_party/androidx:androidx_annotation_annotation_java", "//third_party/jni_zero:jni_zero_java", ] } robolectric_library("junit") { sources = [ "java/src/org/chromium/components/prefs/PrefServiceTest.java" ] deps = [ ":java", "//base:base_java_test_support", "//base:base_junit_test_support", "//base/test:test_support_java", "//third_party/jni_zero:jni_zero_java", "//third_party/junit", "//third_party/mockito:mockito_java", ] }