The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 1 | # Copyright 2007 The Android Open Source Project |
| 2 | # |
| 3 | # Copies files into the directory structure described by a manifest |
| 4 | |
Joe Onorato | 74905e5 | 2010-06-10 18:34:55 -0700 | [diff] [blame] | 5 | # This tool is prebuilt if we're doing an app-only build. |
Ying Wang | 74bebf6 | 2014-03-07 15:55:14 -0800 | [diff] [blame] | 6 | ifeq ($(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)),) |
Joe Onorato | 74905e5 | 2010-06-10 18:34:55 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 8 | LOCAL_PATH:= $(call my-dir) |
| 9 | include $(CLEAR_VARS) |
| 10 | |
| 11 | LOCAL_SRC_FILES := \ |
| 12 | aidl_language_l.l \ |
| 13 | aidl_language_y.y \ |
| 14 | aidl.cpp \ |
| 15 | aidl_language.cpp \ |
| 16 | options.cpp \ |
| 17 | search_path.cpp \ |
| 18 | AST.cpp \ |
| 19 | Type.cpp \ |
Joe Onorato | fdfe2ff | 2011-08-30 17:24:17 -0700 | [diff] [blame] | 20 | generate_java.cpp \ |
| 21 | generate_java_binder.cpp \ |
| 22 | generate_java_rpc.cpp |
The Android Open Source Project | 9066cfe | 2009-03-03 19:31:44 -0800 | [diff] [blame] | 23 | |
| 24 | LOCAL_CFLAGS := -g |
| 25 | LOCAL_MODULE := aidl |
| 26 | |
| 27 | include $(BUILD_HOST_EXECUTABLE) |
| 28 | |
Ying Wang | 74bebf6 | 2014-03-07 15:55:14 -0800 | [diff] [blame] | 29 | endif # No TARGET_BUILD_APPS or TARGET_BUILD_PDK |