| # 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/chrome/browser/consent_auditor/ConsentAuditorBridge.java" ] |
| } |
| |
| android_library("java") { |
| sources = [ "java/src/org/chromium/chrome/browser/consent_auditor/ConsentAuditorBridge.java" ] |
| deps = [ |
| "//base:base_java", |
| "//build/android:build_java", |
| "//chrome/browser/profiles/android:java", |
| "//components/signin/public/android:java", |
| "//google_apis/gaia/android:java", |
| "//third_party/androidx:androidx_annotation_annotation_java", |
| "//third_party/jni_zero:jni_zero_java", |
| ] |
| srcjar_deps = [ |
| ":jni_headers", |
| "//components/consent_auditor:consent_auditor_java", |
| ] |
| } |