BUILD.gn 670 B

12345678910111213141516171819
  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. import("//build/config/android/rules.gni")
  5. # The output jar for this target is copied and checked-in to minimize the number
  6. # of edges in the build graph. This is a class that rarely changes.
  7. java_library("custom_d8_java") {
  8. sources = [ "java/src/org/chromium/build/CustomD8.java" ]
  9. # Avoid using java_prebuilt() to ensure all uses go through the checked-in
  10. # version.
  11. input_jars_paths = [ "//third_party/r8/lib/r8.jar" ]
  12. }
  13. java_prebuilt("r8_java") {
  14. jar_path = "//third_party/r8/lib/r8.jar"
  15. }