• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2014 The Chromium Authors
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
7group("commands") {
8  data_deps = [ ":chromium_commands_java" ]
9}
10
11android_library("unzip_java") {
12  jacoco_never_instrument = true
13  sources = [ "java/src/org/chromium/android/commands/unzip/Unzip.java" ]
14}
15
16dist_dex("chromium_commands_java") {
17  deps = [ ":unzip_java" ]
18  output = "$root_build_dir/lib.java/chromium_commands.dex.jar"
19  data = [ output ]
20}
21