• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

development


Commit MetaInfo

Révision7b31f3fe55887215bff517e4620b6f788125c558 (tree)
l'heure2009-11-15 13:09:30
AuteurChih-Wei Huang <cwhuang@linu...>
CommiterChih-Wei Huang

Message de Log

remove unnecessary stuff on x86

Change Summary

Modification

--- a/emulator/keymaps/Android.mk
+++ b/emulator/keymaps/Android.mk
@@ -1,3 +1,4 @@
1+ifeq ($(TARGET_ARCH),arm)
12 LOCAL_PATH:= $(call my-dir)
23 include $(CLEAR_VARS)
34 LOCAL_SRC_FILES := qwerty.kcm
@@ -16,3 +17,4 @@ file := $(TARGET_OUT_KEYLAYOUT)/AVRCP.kl
1617 ALL_PREBUILT += $(file)
1718 $(file) : $(LOCAL_PATH)/AVRCP.kl | $(ACP)
1819 $(transform-prebuilt-to-target)
20+endif
--- a/emulator/qemud/Android.mk
+++ b/emulator/qemud/Android.mk
@@ -1,5 +1,6 @@
11 # Copyright 2008 The Android Open Source Project
22
3+ifeq ($(TARGET_ARCH),arm)
34 LOCAL_PATH:= $(call my-dir)
45 include $(CLEAR_VARS)
56
@@ -14,3 +15,4 @@ LOCAL_MODULE:= qemud
1415 LOCAL_MODULE_TAGS := debug
1516
1617 include $(BUILD_EXECUTABLE)
18+endif
--- a/emulator/qtools/Android.mk
+++ b/emulator/qtools/Android.mk
@@ -4,6 +4,7 @@
44 # Java method trace dump tool
55 #
66
7+ifeq ($(TARGET_ARCH),arm)
78 LOCAL_PATH:= $(call my-dir)
89
910 common_includes := external/qemu
@@ -155,3 +156,4 @@ LOCAL_C_INCLUDES += $(common_includes)
155156 LOCAL_CFLAGS += $(common_cflags)
156157 LOCAL_MODULE := dump_regions
157158 include $(BUILD_HOST_EXECUTABLE)
159+endif
--- a/emulator/sensors/Android.mk
+++ b/emulator/sensors/Android.mk
@@ -12,7 +12,7 @@
1212 # See the License for the specific language governing permissions and
1313 # limitations under the License.
1414
15-
15+ifeq ($(TARGET_ARCH),arm)
1616 LOCAL_PATH := $(call my-dir)
1717
1818 ifneq ($(TARGET_PRODUCT),sim)
@@ -27,3 +27,4 @@ LOCAL_MODULE := sensors.goldfish
2727 LOCAL_MODULE_TAGS := debug
2828 include $(BUILD_SHARED_LIBRARY)
2929 endif
30+endif
--- a/emulator/tools/Android.mk
+++ b/emulator/tools/Android.mk
@@ -16,6 +16,7 @@
1616 # that should only run in the emulator.
1717 #
1818
19+ifeq ($(TARGET_ARCH),arm)
1920 LOCAL_PATH := $(call my-dir)
2021
2122 ifneq ($(TARGET_PRODUCT),sim)
@@ -33,4 +34,4 @@ LOCAL_MODULE_TAGS := debug
3334 include $(BUILD_EXECUTABLE)
3435
3536 endif # TARGET_PRODUCT != sim
36-
37+endif