diff options
author | Brian Swetland <swetland@google.com> | 2012-03-28 15:30:36 -0700 |
---|---|---|
committer | Brian Swetland <swetland@google.com> | 2012-03-28 15:30:36 -0700 |
commit | b8775421a549570c6f207b27d575fd94e6860103 (patch) | |
tree | 9c67decc119281c1e258117708d7da0645eb6fa1 /tools/apicheck/Android.mk | |
parent | bf2c759a676ef3836a5e52ddf56b61b67a9adc05 (diff) | |
download | build-b8775421a549570c6f207b27d575fd94e6860103.zip build-b8775421a549570c6f207b27d575fd94e6860103.tar.gz build-b8775421a549570c6f207b27d575fd94e6860103.tar.bz2 |
don't build apicheck for PDK builds, removing dependency on doclava
PDK builds have no Java APIs...
Change-Id: I719e0c206234d03a70f3178fd618676f8ee0e6f4
Diffstat (limited to 'tools/apicheck/Android.mk')
-rw-r--r-- | tools/apicheck/Android.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/apicheck/Android.mk b/tools/apicheck/Android.mk index 24f697c..1674a17 100644 --- a/tools/apicheck/Android.mk +++ b/tools/apicheck/Android.mk @@ -12,6 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +ifneq ($(TARGET_BUILD_PDK),true) LOCAL_PATH := $(call my-dir) # We use copy-file-to-new-target so that the installed @@ -36,3 +37,4 @@ $(LOCAL_BUILT_MODULE): $(LOCAL_PATH)/etc/apicheck | $(ACP) $(hide) chmod 755 $@ # Apicheck is now part of Doclava -- See external/doclava. +endif |