diff options
author | SeokYeon Hwang <syeon.hwang@samsung.com> | 2015-08-10 12:58:35 +0900 |
---|---|---|
committer | SeokYeon Hwang <syeon.hwang@samsung.com> | 2015-08-10 21:40:37 +0900 |
commit | 933aac74b478bd50b5516c2f018669fb72c0f675 (patch) | |
tree | d12a757ccd9344a3f9a1249f7cde526cc40befbd /tizen/src/emul_state.c | |
parent | 1d4670893e97479c66f561c722a6ff18d52e2235 (diff) | |
download | qemu-933aac74b478bd50b5516c2f018669fb72c0f675.tar.gz qemu-933aac74b478bd50b5516c2f018669fb72c0f675.tar.bz2 qemu-933aac74b478bd50b5516c2f018669fb72c0f675.zip |
UI: massive refactoring about UI/Display components
Detached QT UI from skin/display completely.
Did not built skin/display when JAVA UI is disabled.
Fixed some of badly header inclusion chains.
Change-Id: I260876aadbed75154055ec19d5f384c884854ef5
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
Diffstat (limited to 'tizen/src/emul_state.c')
-rw-r--r-- | tizen/src/emul_state.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tizen/src/emul_state.c b/tizen/src/emul_state.c index c064186692..310dea6061 100644 --- a/tizen/src/emul_state.c +++ b/tizen/src/emul_state.c @@ -52,11 +52,14 @@ extern bool hax_allowed; #include "qmp-commands.h" #include "emulator_options.h" -#include "skin/maruskin_server.h" #include "hw/virtio/maru_virtio_touchscreen.h" #include "hw/virtio/maru_virtio_evdi.h" #include "util/new_debug_ch.h" +#ifdef CONFIG_JAVA_UI +#include "skin/maruskin_server.h" +#endif + DECLARE_DEBUG_CHANNEL(emul_state); static EmulatorConfigInfo _emul_info = {0,}; |