aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorRaphael Moll <ralf@android.com>2013-03-12 10:39:00 -0700
committerRaphael Moll <ralf@android.com>2013-03-13 20:34:20 -0700
commitf6a5b596f5473558ecc859e8af931a9f1b80a7ea (patch)
tree885f0080f18c5ba1a94781b9d61077d2c67e3add /build
parentbc982e5d2a6ffc0fa5c76eaf39e77e4ec415e637 (diff)
downloadsdk-f6a5b596f5473558ecc859e8af931a9f1b80a7ea.zip
sdk-f6a5b596f5473558ecc859e8af931a9f1b80a7ea.tar.gz
sdk-f6a5b596f5473558ecc859e8af931a9f1b80a7ea.tar.bz2
SDK: Delete projects moved to tools/base or tools/swt.
Change-Id: Iba15f82cb00d19217382c78d8ff37dda1e97ea59
Diffstat (limited to 'build')
-rw-r--r--build/sdk_only_whitelist.mk74
1 files changed, 0 insertions, 74 deletions
diff --git a/build/sdk_only_whitelist.mk b/build/sdk_only_whitelist.mk
deleted file mode 100644
index 53f2d94..0000000
--- a/build/sdk_only_whitelist.mk
+++ /dev/null
@@ -1,74 +0,0 @@
-# Whitelist of SDK projects that can be built for the SDK on Windows
-
-# The Windows SDK cannot build all the projects from the SDK tree, typically
-# due to obvious compiler/architectures differences. When building the Windows
-# SDK, we only care about a subset of projects (e.g. generally the SDK tools
-# and a few platform-specific binaries.)
-#
-# This file defines a whitelist of projects that can be built in the Windows
-# SDK case. Note that whitelisting a project directory will NOT actually build
-# it -- it will only allow one to reference it as a make dependency.
-#
-# This file is included by build/core/main.mk.
-
-# Note that there are 2 flavors of this file:
-#
-# - This file: sdk/build/sdk_only_whitelist.mk
-# must list all projects that are that are NOT specific to a given platform.
-# These binaries are the ones typically found in the SDK/tools directory.
-#
-# - The other file: development/build/sdk_only_whitelist.mk
-# must list all projects that are specific to a given platform. These
-# projects generate files that are generally locates in SDK/platform-tools,
-# or SDK/platforms/, etc.
-
-# -----
-# Whitelist of SDK specific projects that do NOT need Java (e.g. C libraries)
-
-subdirs += \
- external/openssl \
- external/qemu \
- prebuilts/tools \
- sdk/avdlauncher \
- sdk/emulator/mksdcard \
- sdk/emulator/opengl \
- sdk/find_java \
- sdk/find_lock \
- sdk/sdklauncher
-
-# -----
-# Whitelist of SDK specific projects that DO require Java
-
-ifneq (,$(shell which javac 2>/dev/null))
-subdirs += \
- external/ant-glob \
- external/eclipse-windowbuilder/propertysheet \
- external/hamcrest \
- external/junit \
- sdk/archquery \
- sdk/annotations \
- sdk/apkbuilder \
- sdk/assetstudio \
- sdk/common \
- sdk/ddms \
- sdk/device_validator \
- sdk/eclipse/scripts/rcp \
- sdk/hierarchyviewer2 \
- sdk/sdk_common \
- sdk/jarutils \
- sdk/layoutlib_api \
- sdk/manifmerger \
- sdk/monitor \
- sdk/ninepatch \
- sdk/rule_api \
- sdk/lint \
- sdk/sdkstats \
- sdk/sdkmanager \
- sdk/swtmenubar \
- sdk/testutils \
- sdk/traceview \
- sdk/uiautomatorviewer
-
-else
-$(warning SDK_ONLY: javac not available.)
-endif