Emugen is a tool that can be used to generate code that deals with marshaling/unmarshaling request to/from a wire-protocol. Its input is an API defintion files and its output is C++ source code for the client (caller) and the server (callee) sides. See README file for more details. This submission is resubmission of code that lived under sdk/emulator/opengl/. However, it also includes minor updates in ApiGen.cpp Change-Id: I0ede7448e0a0e26fa0fbc5590d07d1f2f6566f0a
11 lines
219 B
Makefile
11 lines
219 B
Makefile
|
|
LOCAL_PATH:=$(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := debug
|
|
LOCAL_SRC_FILES := ApiGen.cpp EntryPoint.cpp main.cpp strUtils.cpp TypeFactory.cpp
|
|
LOCAL_MODULE := emugen
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|