BUILD.gn 825 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. java_binary("unused_resources") {
  6. sources = [ "//build/android/unused_resources/UnusedResources.java" ]
  7. main_class = "build.android.unused_resources.UnusedResources"
  8. deps = [
  9. "//third_party/android_deps:com_android_tools_common_java",
  10. "//third_party/android_deps:com_android_tools_layoutlib_layoutlib_api_java",
  11. "//third_party/android_deps:com_android_tools_sdk_common_java",
  12. "//third_party/android_deps:com_google_guava_guava_java",
  13. "//third_party/android_deps:org_jetbrains_kotlin_kotlin_stdlib_java",
  14. "//third_party/r8:r8_java",
  15. ]
  16. wrapper_script_name = "helper/unused_resources"
  17. }