This copies the platform-specific emulator modules from sdk.git into development.git/tools/emulator/system/. Note the use of guard variables to prevent clashes when the original modules are still in the tree. The goal is to submit this and https://review.source.android.com/#change,21737, then later remove the modules from sdk.git when we move the internal sdk branch to the appropriate tools_rXXX branch. Change-Id: I762d0efb72d93a935d96c4549f36029c258c3ef9
25 lines
518 B
Makefile
25 lines
518 B
Makefile
# Copyright 2008 The Android Open Source Project
|
|
|
|
# We're moving the emulator-specific platform libs to
|
|
# development.git/tools/emulator/. The following test is to ensure
|
|
# smooth builds even if the tree contains both versions.
|
|
#
|
|
ifndef BUILD_EMULATOR_QEMUD
|
|
BUILD_EMULATOR_QEMUD := true
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
qemud.c
|
|
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
|
|
LOCAL_MODULE:= qemud
|
|
LOCAL_MODULE_TAGS := debug
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
endif # BUILD_EMULATOR_QEMUD
|