1# Copyright 2024 The Chromium Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("//build/config/android/rules.gni") 6 7android_library("instrumentation_test_runner_java") { 8 testonly = true 9 sources = [ 10 "java/src/org/chromium/testing/TestListInstrumentationRunListener.java", 11 ] 12 mergeable_android_manifests = [ "java/AndroidManifest.xml" ] 13 deps = [ 14 "//third_party/androidx:androidx_annotation_annotation_java", 15 "//third_party/androidx:androidx_test_monitor_java", 16 "//third_party/androidx:androidx_test_runner_java", 17 "//third_party/junit:junit", 18 ] 19} 20