blob: d641fe634e70dac891888ef6669839d80d6c0298 [file] [log] [blame]
Colin Cross7fb59562017-08-11 15:26:50 -07001// Copyright 2006 The Android Open Source Project
2//
3
4// This tool is prebuilt if we're doing an app-only build.
5// ANDROIDMK TRANSLATION ERROR: unsupported conditional
6// ifeq ($(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)),)
7
8// dx java library
9// ============================================================
10java_binary_host {
11 name: "dx",
12 wrapper: "etc/dx",
13 srcs: ["src/**/*.java"],
14 manifest: "etc/manifest.txt",
15 java_version: "1.7",
16 product_variables: {
17 pdk: {
18 enabled: false,
19 },
20 unbundled_build: {
21 enabled: false,
22 },
23 },
24}