summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Hartman <ghartman@google.com>2018-10-12 23:48:17 -0700
committerGreg Hartman <ghartman@google.com>2018-10-24 18:49:39 -0700
commit6a076d3bfaea723b215565c29761f22329e3ba72 (patch)
treef73ca4a8f6017bee6bb5ea6a994afe9144d38240
parent8af14a4c74e8b456389545b5401d0a4d64f0d6bb (diff)
downloaddevice_generic_opengl-transport-6a076d3bfaea723b215565c29761f22329e3ba72.tar.gz
device_generic_opengl-transport-6a076d3bfaea723b215565c29761f22329e3ba72.tar.bz2
device_generic_opengl-transport-6a076d3bfaea723b215565c29761f22329e3ba72.zip
Remove spurious Android.mk
BUG: 117561734 Test: Local build gets further Change-Id: I96a0d285b98f97bed38a8f18657b9f12f21e6b47 (cherry picked from commit b647927ff80c6f4f44d07c978d16936f33ff2e61)
-rw-r--r--host/commands/emugen/Android.mk39
1 files changed, 0 insertions, 39 deletions
diff --git a/host/commands/emugen/Android.mk b/host/commands/emugen/Android.mk
deleted file mode 100644
index 81d130de6..000000000
--- a/host/commands/emugen/Android.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-# Determine if the emugen build needs to be builts from
-# sources.
-LOCAL_PATH:=$(call my-dir)
-
-$(call emugl-begin-host-executable,emugen)
-LOCAL_SRC_FILES := \
- ApiGen.cpp \
- EntryPoint.cpp \
- main.cpp \
- Parser.cpp \
- strUtils.cpp \
- TypeFactory.cpp \
-
-ifeq ($(BUILD_HOST_OS),linux)
- # Make sure libc++.so can be found
- LOCAL_LDFLAGS +=-Wl,-rpath=$(BUILD_OBJS_DIR)/intermediates64
-endif
-
-LOCAL_INSTALL := false
-
-$(call emugl-end-module)
-
-# The location of the emugen host tool that is used to generate wire
-# protocol encoders/ decoders. This variable is used by other emugl modules.
-EMUGL_EMUGEN := $(LOCAL_BUILT_MODULE)
-
-$(call emugl-begin-host-executable,emugen_unittests)
-LOCAL_SRC_FILES := \
- Parser.cpp \
- Parser_unittest.cpp
-
-LOCAL_INSTALL := false
-
-$(call emugl-import,libemugl_gtest_host)
-ifeq ($(BUILD_HOST_OS),linux)
- # Make sure libc++.so can be found
- LOCAL_LDFLAGS +=-Wl,-rpath=$(BUILD_OBJS_DIR)/intermediates64 -m64
-endif
-$(call emugl-end-module)