1// 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} 25