xref: /aosp_15_r20/external/angle/third_party/r8/BUILD.gn (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
1# Copyright 2021 The Chromium Authors. All rights reserved.
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
7# The output jar for this target is copied and checked-in to minimize the number
8# of edges in the build graph. This is a class that rarely changes.
9java_library("custom_d8_java") {
10  sources = [ "java/src/org/chromium/build/CustomD8.java" ]
11
12  # Avoid using java_prebuilt() to ensure all uses go through the checked-in
13  # version.
14  input_jars_paths = [ "//third_party/r8/lib/r8.jar" ]
15}
16