summaryrefslogtreecommitdiffstats
path: root/media/mtp/Android.mk
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2010-07-15 15:01:17 -0400
committerMike Lockwood <lockwood@android.com>2010-07-15 15:27:38 -0400
commit53fbfed0c81ac82606f27e25bbc61b44dde927a1 (patch)
treef344c9e5ed4a1ce04cae5169b337656ba1d6ec38 /media/mtp/Android.mk
parent4e2ffa400b82559cab2c5717c8dcdff393d334a9 (diff)
downloadframeworks_av-53fbfed0c81ac82606f27e25bbc61b44dde927a1.zip
frameworks_av-53fbfed0c81ac82606f27e25bbc61b44dde927a1.tar.gz
frameworks_av-53fbfed0c81ac82606f27e25bbc61b44dde927a1.tar.bz2
Exclude MTP implementation from simulator build
Change-Id: I93364c74c26ba6e2bf6b08f1bd82802b966c8dfb Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'media/mtp/Android.mk')
-rw-r--r--media/mtp/Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/media/mtp/Android.mk b/media/mtp/Android.mk
index 4659709..40adf18 100644
--- a/media/mtp/Android.mk
+++ b/media/mtp/Android.mk
@@ -13,6 +13,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
+
+ifneq ($(TARGET_SIMULATOR),true)
+
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
@@ -41,3 +44,5 @@ LOCAL_MODULE:= libmtp
LOCAL_CFLAGS := -DMTP_DEVICE -DMTP_HOST
include $(BUILD_STATIC_LIBRARY)
+
+endif