| # Copyright 2023 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("java") { |
| sources = |
| [ "java/src/org/chromium/chrome/browser/intents/BrowserIntentUtils.java" ] |
| deps = [ "//base:base_java" ] |
| } |
| |
| android_library("unit_device_javatests") { |
| testonly = true |
| sources = [ "java/src/org/chromium/chrome/browser/intents/BrowserIntentUtilsUnitTest.java" ] |
| deps = [ |
| ":java", |
| "//base:base_java", |
| "//base:base_java_test_support", |
| "//third_party/androidx:androidx_annotation_annotation_java", |
| "//third_party/androidx:androidx_test_core_java", |
| "//third_party/androidx:androidx_test_runner_java", |
| "//third_party/hamcrest:hamcrest_java", |
| "//third_party/hamcrest:hamcrest_library_java", |
| "//third_party/junit", |
| ] |
| } |