Mir

Merge lp:~alan-griffiths/mir/prepare-to-send-clients-input into lp:~robertcarr/mir/prepare-to-send-clients-input

Proposed by Alan Griffiths
Status: Merged
Approved by: Robert Carr
Approved revision: no longer in the source branch.
Merged at revision: 498
Proposed branch: lp:~alan-griffiths/mir/prepare-to-send-clients-input
Merge into: lp:~robertcarr/mir/prepare-to-send-clients-input
Diff against target: 905 lines (+177/-163)
49 files modified
CMakeLists.txt (+1/-1)
cross-compile-chroot.sh (+0/-1)
debian/libmirclient-demos.examples (+3/-3)
debian/rules (+0/-1)
examples/CMakeLists.txt (+5/-1)
include/test/mir_test/fake_event_hub_input_configuration.h (+1/-1)
include/test/mir_test_doubles/mock_alloc_adaptor.h (+2/-2)
src/CMakeLists.txt (+2/-89)
src/client/CMakeLists.txt (+4/-4)
src/server/CMakeLists.txt (+89/-0)
src/shared/CMakeLists.txt (+8/-0)
tests/CMakeLists.txt (+4/-0)
tests/behavior-tests/session_management_context.cpp (+1/-1)
tests/behavior-tests/session_manager_steps.cpp (+1/-1)
tests/integration-tests/CMakeLists.txt (+0/-1)
tests/integration-tests/client/test_client_render.cpp (+3/-3)
tests/integration-tests/cucumber/test_session_management_context.cpp (+1/-1)
tests/integration-tests/graphics/android/test_buffer_integration.cpp (+3/-3)
tests/integration-tests/graphics/gbm/test_buffer_integration.cpp (+3/-3)
tests/integration-tests/input/android/test_android_cursor_listener.cpp (+2/-2)
tests/integration-tests/input/android/test_android_input_manager.cpp (+2/-2)
tests/integration-tests/input/android/test_fake_event_hub_to_event_filter.cpp (+3/-3)
tests/mir_test_doubles/test_protobuf_socket_server.cpp (+1/-1)
tests/unit-tests/CMakeLists.txt (+0/-1)
tests/unit-tests/compositor/test_temporary_buffers.cpp (+1/-1)
tests/unit-tests/frontend/test_application_mediator.cpp (+1/-1)
tests/unit-tests/graphics/android/test_android_alloc_adaptor.cpp (+1/-1)
tests/unit-tests/graphics/android/test_android_alloc_adaptor_native_win.cpp (+1/-1)
tests/unit-tests/graphics/android/test_android_buffer.cpp (+1/-1)
tests/unit-tests/graphics/android/test_android_buffer_allocator.cpp (+1/-1)
tests/unit-tests/graphics/android/test_android_fb.cpp (+2/-2)
tests/unit-tests/graphics/android/test_android_framebuffer_window.cpp (+1/-1)
tests/unit-tests/graphics/gbm/test_gbm_buffer.cpp (+3/-3)
tests/unit-tests/graphics/gbm/test_gbm_buffer_allocator.cpp (+2/-2)
tests/unit-tests/graphics/gbm/test_gbm_display.cpp (+2/-2)
tests/unit-tests/graphics/gbm/test_gbm_display_configuration.cpp (+2/-2)
tests/unit-tests/graphics/gbm/test_gbm_display_multi_monitor.cpp (+1/-1)
tests/unit-tests/graphics/gbm/test_kms_output.cpp (+2/-2)
tests/unit-tests/graphics/gbm/test_kms_page_flipper.cpp (+4/-4)
tests/unit-tests/input/android/test_android_communication_package.cpp (+1/-1)
tests/unit-tests/input/android/test_android_input_lexicon.cpp (+1/-1)
tests/unit-tests/input/android/test_android_input_manager.cpp (+4/-4)
tests/unit-tests/input/android/test_android_input_reader_policy.cpp (+1/-1)
tests/unit-tests/input/android/test_android_pointer_controller.cpp (+1/-1)
tests/unit-tests/input/android/test_event_filter_chain.cpp (+1/-1)
tests/unit-tests/input/android/test_event_filter_input_dispatcher_policy.cpp (+1/-1)
tests/unit-tests/shell/test_application_session.cpp (+1/-1)
tests/unit-tests/shell/test_session_manager.cpp (+1/-1)
tests/unit-tests/surfaces/test_proxy_surface.cpp (+1/-1)
To merge this branch: bzr merge lp:~alan-griffiths/mir/prepare-to-send-clients-input
Reviewer Review Type Date Requested Status
Robert Carr Pending
Review via email: mp+153098@code.launchpad.net

Commit message

Merge trunk and fix compile error

Description of the change

Merge trunk and fix compile error

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2013-03-12 21:25:44 +0000
3+++ CMakeLists.txt 2013-03-13 09:54:21 +0000
4@@ -67,7 +67,7 @@
5
6 enable_testing()
7
8-include_directories(include/)
9+include_directories(include/shared)
10
11 # Check for boost
12 find_package(Boost 1.48.0 COMPONENTS chrono date_time filesystem system thread program_options regex REQUIRED)
13
14=== modified file 'cross-compile-chroot.sh'
15--- cross-compile-chroot.sh 2013-03-07 08:04:05 +0000
16+++ cross-compile-chroot.sh 2013-03-13 09:54:21 +0000
17@@ -37,7 +37,6 @@
18 cmake -DCMAKE_TOOLCHAIN_FILE=../cmake/LinuxCrossCompile.cmake \
19 -DBoost_COMPILER=-gcc \
20 -DMIR_ENABLE_DEATH_TESTS=NO \
21- -DMIR_INPUT_ENABLE_EVEMU=NO \
22 -DMIR_PLATFORM=android \
23 -DMIR_DISABLE_INPUT=true \
24 ..
25
26=== modified file 'debian/libmirclient-demos.examples'
27--- debian/libmirclient-demos.examples 2013-01-28 21:35:03 +0000
28+++ debian/libmirclient-demos.examples 2013-03-13 09:54:21 +0000
29@@ -2,6 +2,6 @@
30 examples/demo_client_accelerated.cpp
31 examples/demo_client_unaccelerated.c
32 examples/README
33-include/mir/draw/graphics.h
34-include/mir/draw/mir_image.h
35-src/draw/graphics_utils.cpp
36+include/shared/mir/draw/graphics.h
37+include/shared/mir/draw/mir_image.h
38+src/shared/draw/graphics_utils.cpp
39
40=== modified file 'debian/rules'
41--- debian/rules 2013-03-12 03:50:42 +0000
42+++ debian/rules 2013-03-13 09:54:21 +0000
43@@ -27,7 +27,6 @@
44 $(COMMON_CONFIGURE_OPTIONS) \
45 -DBoost_COMPILER=-gcc \
46 -DMIR_ENABLE_DEATH_TESTS=NO \
47- -DMIR_INPUT_ENABLE_EVEMU=NO \
48 -DMIR_PLATFORM=android
49 else
50 dh_auto_configure -- \
51
52=== modified file 'examples/CMakeLists.txt'
53--- examples/CMakeLists.txt 2013-03-08 09:39:52 +0000
54+++ examples/CMakeLists.txt 2013-03-13 09:54:21 +0000
55@@ -82,7 +82,11 @@
56
57 )
58
59-include_directories(${GLESv2_INCLUDE_DIRS})
60+include_directories(
61+ ${PROJECT_SOURCE_DIR}/include/server
62+ ${PROJECT_SOURCE_DIR}/include/client
63+ ${GLESv2_INCLUDE_DIRS}
64+)
65
66 set(RENDER_TO_FB_SOURCES render_to_fb.cpp)
67 add_executable(render_to_fb ${RENDER_TO_FB_SOURCES})
68
69=== added directory 'include/client'
70=== renamed directory 'include/mir_toolkit' => 'include/client/mir_toolkit'
71=== added directory 'include/server'
72=== renamed directory 'include/mir' => 'include/server/mir'
73=== added directory 'include/shared'
74=== added directory 'include/shared/mir'
75=== renamed directory 'include/mir/draw' => 'include/shared/mir/draw'
76=== renamed directory 'include/mir/geometry' => 'include/shared/mir/geometry'
77=== renamed directory 'include/mir/protobuf' => 'include/shared/mir/protobuf'
78=== added directory 'include/shared/mir_toolkit'
79=== renamed directory 'include/mir_toolkit/input' => 'include/shared/mir_toolkit/input'
80=== added directory 'include/test'
81=== renamed directory 'include/mir_test' => 'include/test/mir_test'
82=== modified file 'include/test/mir_test/fake_event_hub_input_configuration.h'
83--- include/mir_test/fake_event_hub_input_configuration.h 2013-03-06 17:01:51 +0000
84+++ include/test/mir_test/fake_event_hub_input_configuration.h 2013-03-13 09:54:21 +0000
85@@ -19,7 +19,7 @@
86 #ifndef MIR_TEST_DOUBLES_FAKE_EVENT_HUB_INPUT_CONFIGURATION_H_
87 #define MIR_TEST_DOUBLES_FAKE_EVENT_HUB_INPUT_CONFIGURATION_H_
88
89-#include "src/input/android/default_android_input_configuration.h"
90+#include "src/server/input/android/default_android_input_configuration.h"
91
92 #include <utils/StrongPointer.h>
93
94
95=== renamed directory 'include/mir_test_cucumber' => 'include/test/mir_test_cucumber'
96=== renamed directory 'include/mir_test_doubles' => 'include/test/mir_test_doubles'
97=== modified file 'include/test/mir_test_doubles/mock_alloc_adaptor.h'
98--- include/mir_test_doubles/mock_alloc_adaptor.h 2013-03-07 08:04:05 +0000
99+++ include/test/mir_test_doubles/mock_alloc_adaptor.h 2013-03-13 09:54:21 +0000
100@@ -19,8 +19,8 @@
101 #ifndef MIR_TEST_DOUBLES_MOCK_ALLOC_ADAPTOR_H_
102 #define MIR_TEST_DOUBLES_MOCK_ALLOC_ADAPTOR_H_
103
104-#include "src/graphics/android/graphic_alloc_adaptor.h"
105-#include "src/graphics/android/android_buffer.h"
106+#include "src/server/graphics/android/graphic_alloc_adaptor.h"
107+#include "src/server/graphics/android/android_buffer.h"
108
109 #include <system/window.h>
110 #include <gmock/gmock.h>
111
112=== renamed directory 'include/mir_test_framework' => 'include/test/mir_test_framework'
113=== modified file 'src/CMakeLists.txt'
114--- src/CMakeLists.txt 2013-03-07 08:04:05 +0000
115+++ src/CMakeLists.txt 2013-03-13 09:54:21 +0000
116@@ -1,96 +1,9 @@
117 set(MIR_GENERATED_INCLUDE_DIRECTORIES)
118-add_subdirectory(protobuf/)
119+add_subdirectory(shared/)
120 include_directories(${MIR_GENERATED_INCLUDE_DIRECTORIES})
121
122-add_subdirectory(compositor/)
123-add_subdirectory(draw/)
124-add_subdirectory(graphics/)
125-add_subdirectory(input/)
126-add_subdirectory(logging/)
127-add_subdirectory(surfaces/)
128-add_subdirectory(options/)
129+add_subdirectory(server/)
130 add_subdirectory(client/)
131-add_subdirectory(frontend/)
132-add_subdirectory(shell/)
133-
134-configure_file(
135- ${CMAKE_CURRENT_SOURCE_DIR}/mirserver.pc.in
136- ${CMAKE_CURRENT_BINARY_DIR}/mirserver.pc
137-)
138-
139-set(
140- SRCS
141- display_server.cpp
142- default_server_configuration.cpp
143-)
144-
145-set(MIRSERVER_LINKAGE SHARED)
146-
147-add_library(mirserver ${MIRSERVER_LINKAGE}
148- ${SRCS}
149-)
150-
151-add_executable(
152- mirds
153-
154- main.cpp
155-)
156-
157-set_target_properties(mirds PROPERTIES OUTPUT_NAME mir)
158-
159-list(APPEND MIRSERVER_ARCHIVES
160- miroptions
161- mircompositor
162- mirfrontend
163- mirgraphics
164- mirinput
165- mirsurfaces
166-)
167-
168-list(APPEND MIRSERVER_LINKS
169- mirplatformgraphics
170- mirprotobuf
171- 3rd_party
172- ${Boost_LIBRARIES}
173-)
174-
175-if(${MIRSERVER_LINKAGE} STREQUAL SHARED)
176- target_link_libraries(mirserver
177- LINK_PRIVATE
178- -Wl,-whole-archive
179- ${MIRSERVER_ARCHIVES}
180- -Wl,-no-whole-archive
181- LINK_PUBLIC
182- ${MIRSERVER_LINKS}
183- )
184- install(TARGETS mirserver
185- LIBRARY DESTINATION lib
186- )
187-else()
188- target_link_libraries(mirserver
189- LINK_PUBLIC
190- ${MIRSERVER_ARCHIVES}
191- ${MIRSERVER_LINKS}
192- )
193-endif()
194-
195-set_target_properties(mirserver PROPERTIES
196- VERSION ${MIR_VERSION_MAJOR}.${MIR_VERSION_MINOR}.${MIR_VERSION_PATCH}
197- SOVERSION ${MIR_VERSION_MAJOR}
198-)
199-
200-target_link_libraries(mirds
201- mirserver
202- ${Boost_LIBRARIES}
203-)
204-
205-install(TARGETS mirds
206- RUNTIME DESTINATION bin
207-)
208-
209-install(FILES ${CMAKE_CURRENT_BINARY_DIR}/mirserver.pc
210- DESTINATION lib/pkgconfig
211-)
212
213 set(
214 MIR_GENERATED_INCLUDE_DIRECTORIES
215
216=== modified file 'src/client/CMakeLists.txt'
217--- src/client/CMakeLists.txt 2013-03-12 16:43:03 +0000
218+++ src/client/CMakeLists.txt 2013-03-13 09:54:21 +0000
219@@ -20,7 +20,7 @@
220 endif()
221
222 include_directories(
223- ${CMAKE_CURRENT_SOURCE_DIR}
224+ ${PROJECT_SOURCE_DIR}/include/client
225 ${DRM_INCLUDE_DIRS}
226 )
227
228@@ -107,9 +107,9 @@
229 set(
230 CLIENT_PUBLIC_HEADERS
231
232- ${CMAKE_SOURCE_DIR}/include/mir_toolkit/mir_client_library.h
233- ${CMAKE_SOURCE_DIR}/include/mir_toolkit/mir_client_library_lightdm.h
234- ${CMAKE_SOURCE_DIR}/include/mir_toolkit/mir_client_library_drm.h
235+ ${CMAKE_SOURCE_DIR}/include/client/mir_toolkit/mir_client_library.h
236+ ${CMAKE_SOURCE_DIR}/include/client/mir_toolkit/mir_client_library_lightdm.h
237+ ${CMAKE_SOURCE_DIR}/include/client/mir_toolkit/mir_client_library_drm.h
238 )
239
240 set_target_properties(
241
242=== added directory 'src/server'
243=== added file 'src/server/CMakeLists.txt'
244--- src/server/CMakeLists.txt 1970-01-01 00:00:00 +0000
245+++ src/server/CMakeLists.txt 2013-03-13 09:54:21 +0000
246@@ -0,0 +1,89 @@
247+include_directories(${PROJECT_SOURCE_DIR}/include/server)
248+
249+add_subdirectory(compositor/)
250+add_subdirectory(graphics/)
251+add_subdirectory(input/)
252+add_subdirectory(logging/)
253+add_subdirectory(surfaces/)
254+add_subdirectory(options/)
255+add_subdirectory(frontend/)
256+add_subdirectory(shell/)
257+
258+configure_file(
259+ ${CMAKE_CURRENT_SOURCE_DIR}/mirserver.pc.in
260+ ${CMAKE_CURRENT_BINARY_DIR}/mirserver.pc
261+)
262+
263+set(
264+ SRCS
265+ display_server.cpp
266+ default_server_configuration.cpp
267+)
268+
269+set(MIRSERVER_LINKAGE SHARED)
270+
271+add_library(mirserver ${MIRSERVER_LINKAGE}
272+ ${SRCS}
273+)
274+
275+add_executable(
276+ mirds
277+
278+ main.cpp
279+)
280+
281+set_target_properties(mirds PROPERTIES OUTPUT_NAME mir)
282+
283+list(APPEND MIRSERVER_ARCHIVES
284+ miroptions
285+ mircompositor
286+ mirfrontend
287+ mirgraphics
288+ mirinput
289+ mirsurfaces
290+)
291+
292+list(APPEND MIRSERVER_LINKS
293+ mirplatformgraphics
294+ mirprotobuf
295+ 3rd_party
296+ ${Boost_LIBRARIES}
297+)
298+
299+if(${MIRSERVER_LINKAGE} STREQUAL SHARED)
300+ target_link_libraries(mirserver
301+ LINK_PRIVATE
302+ -Wl,-whole-archive
303+ ${MIRSERVER_ARCHIVES}
304+ -Wl,-no-whole-archive
305+ LINK_PUBLIC
306+ ${MIRSERVER_LINKS}
307+ )
308+ install(TARGETS mirserver
309+ LIBRARY DESTINATION lib
310+ )
311+else()
312+ target_link_libraries(mirserver
313+ LINK_PUBLIC
314+ ${MIRSERVER_ARCHIVES}
315+ ${MIRSERVER_LINKS}
316+ )
317+endif()
318+
319+set_target_properties(mirserver PROPERTIES
320+ VERSION ${MIR_VERSION_MAJOR}.${MIR_VERSION_MINOR}.${MIR_VERSION_PATCH}
321+ SOVERSION ${MIR_VERSION_MAJOR}
322+)
323+
324+target_link_libraries(mirds
325+ mirserver
326+ ${Boost_LIBRARIES}
327+)
328+
329+install(TARGETS mirds
330+ RUNTIME DESTINATION bin
331+)
332+
333+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/mirserver.pc
334+ DESTINATION lib/pkgconfig
335+)
336
337=== renamed directory 'src/compositor' => 'src/server/compositor'
338=== renamed file 'src/default_server_configuration.cpp' => 'src/server/default_server_configuration.cpp'
339=== renamed file 'src/display_server.cpp' => 'src/server/display_server.cpp'
340=== renamed directory 'src/frontend' => 'src/server/frontend'
341=== renamed directory 'src/graphics' => 'src/server/graphics'
342=== renamed directory 'src/input' => 'src/server/input'
343=== renamed directory 'src/logging' => 'src/server/logging'
344=== renamed file 'src/main.cpp' => 'src/server/main.cpp'
345=== renamed file 'src/mirserver.pc.in' => 'src/server/mirserver.pc.in'
346=== renamed directory 'src/options' => 'src/server/options'
347=== renamed directory 'src/shell' => 'src/server/shell'
348=== renamed directory 'src/surfaces' => 'src/server/surfaces'
349=== added directory 'src/shared'
350=== added file 'src/shared/CMakeLists.txt'
351--- src/shared/CMakeLists.txt 1970-01-01 00:00:00 +0000
352+++ src/shared/CMakeLists.txt 2013-03-13 09:54:21 +0000
353@@ -0,0 +1,8 @@
354+set(MIR_GENERATED_INCLUDE_DIRECTORIES)
355+add_subdirectory(protobuf/)
356+add_subdirectory(draw/)
357+
358+set(
359+ MIR_GENERATED_INCLUDE_DIRECTORIES
360+ ${MIR_GENERATED_INCLUDE_DIRECTORIES}
361+ PARENT_SCOPE)
362
363=== renamed directory 'src/draw' => 'src/shared/draw'
364=== renamed directory 'src/protobuf' => 'src/shared/protobuf'
365=== modified file 'tests/CMakeLists.txt'
366--- tests/CMakeLists.txt 2013-03-08 07:20:43 +0000
367+++ tests/CMakeLists.txt 2013-03-13 09:54:21 +0000
368@@ -20,6 +20,10 @@
369 add_definitions(-DMIR_DEATH_TESTS_ENABLED)
370 endif(MIR_ENABLE_DEATH_TESTS)
371
372+include_directories(${PROJECT_SOURCE_DIR}/include/server)
373+include_directories(${PROJECT_SOURCE_DIR}/include/client)
374+include_directories(${PROJECT_SOURCE_DIR}/include/test)
375+
376 if (MIR_PLATFORM STREQUAL "android")
377 include_directories( ${LIBHARDWARE_INCLUDE_DIRS} ${ANDROID_UI_INCLUDE_DIRS})
378 endif()
379
380=== modified file 'tests/behavior-tests/session_management_context.cpp'
381--- tests/behavior-tests/session_management_context.cpp 2013-03-12 21:25:44 +0000
382+++ tests/behavior-tests/session_management_context.cpp 2013-03-13 09:54:21 +0000
383@@ -16,7 +16,7 @@
384 * Authored by: Robert Carr <robert.carr@canonical.com>
385 */
386
387-#include "session_management_context.h"
388+#include "mir_test_cucumber/session_management_context.h"
389
390 #include "mir/shell/surface.h"
391 #include "mir/shell/surface_creation_parameters.h"
392
393=== modified file 'tests/behavior-tests/session_manager_steps.cpp'
394--- tests/behavior-tests/session_manager_steps.cpp 2013-01-24 19:16:18 +0000
395+++ tests/behavior-tests/session_manager_steps.cpp 2013-03-13 09:54:21 +0000
396@@ -16,7 +16,7 @@
397 * Authored by: Robert Carr <robert.carr@canonical.com>
398 */
399
400-#include "session_management_context.h"
401+#include "mir_test_cucumber/session_management_context.h"
402
403 #include <gtest/gtest.h>
404 #include <cucumber-cpp/defs.hpp>
405
406=== modified file 'tests/integration-tests/CMakeLists.txt'
407--- tests/integration-tests/CMakeLists.txt 2013-03-08 07:20:43 +0000
408+++ tests/integration-tests/CMakeLists.txt 2013-03-13 09:54:21 +0000
409@@ -1,5 +1,4 @@
410 include_directories(${CMAKE_SOURCE_DIR})
411-include_directories(${PROJECT_SOURCE_DIR}/include/mir_test_cucumber)
412
413 set(
414 INTEGRATION_TESTS_SRCS
415
416=== modified file 'tests/integration-tests/client/test_client_render.cpp'
417--- tests/integration-tests/client/test_client_render.cpp 2013-03-07 08:04:05 +0000
418+++ tests/integration-tests/client/test_client_render.cpp 2013-03-13 09:54:21 +0000
419@@ -21,10 +21,10 @@
420 #include "mir_toolkit/mir_client_library.h"
421
422 #include "mir/compositor/buffer_ipc_package.h"
423-#include "src/frontend/protobuf_socket_communicator.h"
424+#include "src/server/frontend/protobuf_socket_communicator.h"
425 #include "mir/frontend/resource_cache.h"
426-#include "src/graphics/android/android_buffer.h"
427-#include "src/graphics/android/android_alloc_adaptor.h"
428+#include "src/server/graphics/android/android_buffer.h"
429+#include "src/server/graphics/android/android_alloc_adaptor.h"
430
431 #include "mir_test/draw/android_graphics.h"
432 #include "mir_test/draw/patterns.h"
433
434=== modified file 'tests/integration-tests/cucumber/test_session_management_context.cpp'
435--- tests/integration-tests/cucumber/test_session_management_context.cpp 2013-03-12 21:25:44 +0000
436+++ tests/integration-tests/cucumber/test_session_management_context.cpp 2013-03-13 09:54:21 +0000
437@@ -16,7 +16,7 @@
438 * Authored by: Robert Carr <robert.carr@canonical.com>
439 */
440
441-#include "session_management_context.h"
442+#include "mir_test_cucumber/session_management_context.h"
443 #include "mir/server_configuration.h"
444 #include "mir/shell/session_store.h"
445 #include "mir/shell/session.h"
446
447=== modified file 'tests/integration-tests/graphics/android/test_buffer_integration.cpp'
448--- tests/integration-tests/graphics/android/test_buffer_integration.cpp 2013-03-07 08:04:05 +0000
449+++ tests/integration-tests/graphics/android/test_buffer_integration.cpp 2013-03-13 09:54:21 +0000
450@@ -16,9 +16,9 @@
451 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
452 */
453
454-#include "src/graphics/android/android_platform.h"
455-#include "src/graphics/android/android_buffer_allocator.h"
456-#include "src/graphics/android/android_display.h"
457+#include "src/server/graphics/android/android_platform.h"
458+#include "src/server/graphics/android/android_buffer_allocator.h"
459+#include "src/server/graphics/android/android_display.h"
460 #include "mir/graphics/buffer_initializer.h"
461 #include "mir/graphics/null_display_report.h"
462 #include "mir/compositor/swapper_factory.h"
463
464=== modified file 'tests/integration-tests/graphics/gbm/test_buffer_integration.cpp'
465--- tests/integration-tests/graphics/gbm/test_buffer_integration.cpp 2013-03-07 08:04:05 +0000
466+++ tests/integration-tests/graphics/gbm/test_buffer_integration.cpp 2013-03-13 09:54:21 +0000
467@@ -16,9 +16,9 @@
468 * Authored by: Alexandros Frantzis <alexandros.frantzis@canonical.com>
469 */
470
471-#include "src/graphics/gbm/gbm_platform.h"
472-#include "src/graphics/gbm/gbm_display.h"
473-#include "src/graphics/gbm/gbm_buffer_allocator.h"
474+#include "src/server/graphics/gbm/gbm_platform.h"
475+#include "src/server/graphics/gbm/gbm_display.h"
476+#include "src/server/graphics/gbm/gbm_buffer_allocator.h"
477 #include "mir/compositor/buffer_basic.h"
478 #include "mir/compositor/buffer_id.h"
479 #include "mir/compositor/buffer_properties.h"
480
481=== modified file 'tests/integration-tests/input/android/test_android_cursor_listener.cpp'
482--- tests/integration-tests/input/android/test_android_cursor_listener.cpp 2013-03-08 07:20:43 +0000
483+++ tests/integration-tests/input/android/test_android_cursor_listener.cpp 2013-03-13 09:54:21 +0000
484@@ -18,8 +18,8 @@
485 */
486
487 #include "mir/input/event_filter.h"
488-#include "src/input/android/android_input_manager.h"
489-#include "src/input/android/default_android_input_configuration.h"
490+#include "src/server/input/android/android_input_manager.h"
491+#include "src/server/input/android/default_android_input_configuration.h"
492 #include "mir/input/cursor_listener.h"
493
494 #include "mir_test/fake_shared.h"
495
496=== modified file 'tests/integration-tests/input/android/test_android_input_manager.cpp'
497--- tests/integration-tests/input/android/test_android_input_manager.cpp 2013-03-12 21:25:44 +0000
498+++ tests/integration-tests/input/android/test_android_input_manager.cpp 2013-03-13 09:54:21 +0000
499@@ -18,8 +18,8 @@
500 */
501
502 #include "mir/input/event_filter.h"
503-#include "src/input/android/default_android_input_configuration.h"
504-#include "src/input/android/android_input_manager.h"
505+#include "src/server/input/android/default_android_input_configuration.h"
506+#include "src/server/input/android/android_input_manager.h"
507
508 #include "mir_test/fake_shared.h"
509 #include "mir_test/fake_event_hub.h"
510
511=== modified file 'tests/integration-tests/input/android/test_fake_event_hub_to_event_filter.cpp'
512--- tests/integration-tests/input/android/test_fake_event_hub_to_event_filter.cpp 2013-02-05 18:12:46 +0000
513+++ tests/integration-tests/input/android/test_fake_event_hub_to_event_filter.cpp 2013-03-13 09:54:21 +0000
514@@ -17,9 +17,9 @@
515 * Daniel d'Andrada <daniel.dandrada@canonical.com>
516 */
517 #include "mir/input/event_filter.h"
518-#include "src/input/android/event_filter_dispatcher_policy.h"
519-#include "src/input/android/rudimentary_input_reader_policy.h"
520-#include "src/input/android/android_input_constants.h"
521+#include "src/server/input/android/event_filter_dispatcher_policy.h"
522+#include "src/server/input/android/rudimentary_input_reader_policy.h"
523+#include "src/server/input/android/android_input_constants.h"
524
525 #include "mir_test/fake_shared.h"
526 #include "mir_test/fake_event_hub.h"
527
528=== modified file 'tests/mir_test_doubles/test_protobuf_socket_server.cpp'
529--- tests/mir_test_doubles/test_protobuf_socket_server.cpp 2013-01-02 15:51:50 +0000
530+++ tests/mir_test_doubles/test_protobuf_socket_server.cpp 2013-03-13 09:54:21 +0000
531@@ -17,7 +17,7 @@
532 */
533
534 #include "mir_test/test_protobuf_server.h"
535-#include "src/frontend/protobuf_socket_communicator.h"
536+#include "src/server/frontend/protobuf_socket_communicator.h"
537
538 namespace mt = mir::test;
539 namespace mtd = mir::test::doubles;
540
541=== modified file 'tests/unit-tests/CMakeLists.txt'
542--- tests/unit-tests/CMakeLists.txt 2013-03-12 03:50:42 +0000
543+++ tests/unit-tests/CMakeLists.txt 2013-03-13 09:54:21 +0000
544@@ -42,7 +42,6 @@
545 ${GMOCK_LIBRARY}
546 ${GMOCK_MAIN_LIBRARY}
547 ${Boost_LIBRARIES}
548- ${EVEMU_LIBRARIES}
549 ${CMAKE_THREAD_LIBS_INIT} # Link in pthread.
550
551 ${ANDROID_STDLIB}
552
553=== modified file 'tests/unit-tests/compositor/test_temporary_buffers.cpp'
554--- tests/unit-tests/compositor/test_temporary_buffers.cpp 2013-01-30 18:34:43 +0000
555+++ tests/unit-tests/compositor/test_temporary_buffers.cpp 2013-03-13 09:54:21 +0000
556@@ -16,7 +16,7 @@
557 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
558 */
559
560-#include "src/compositor/temporary_buffers.h"
561+#include "src/server/compositor/temporary_buffers.h"
562 #include "mir_test_doubles/mock_buffer.h"
563 #include "mir_test_doubles/stub_buffer.h"
564 #include "mir_test_doubles/mock_swapper.h"
565
566=== modified file 'tests/unit-tests/frontend/test_application_mediator.cpp'
567--- tests/unit-tests/frontend/test_application_mediator.cpp 2013-03-12 21:25:44 +0000
568+++ tests/unit-tests/frontend/test_application_mediator.cpp 2013-03-13 09:54:21 +0000
569@@ -34,7 +34,7 @@
570 #include "mir_test_doubles/stub_session.h"
571 #include "mir_test/fake_shared.h"
572
573-#include "src/surfaces/proxy_surface.h"
574+#include "src/server/surfaces/proxy_surface.h"
575
576 #include <gtest/gtest.h>
577 #include <gmock/gmock.h>
578
579=== modified file 'tests/unit-tests/graphics/android/test_android_alloc_adaptor.cpp'
580--- tests/unit-tests/graphics/android/test_android_alloc_adaptor.cpp 2013-03-07 08:04:05 +0000
581+++ tests/unit-tests/graphics/android/test_android_alloc_adaptor.cpp 2013-03-13 09:54:21 +0000
582@@ -16,7 +16,7 @@
583 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
584 */
585
586-#include "src/graphics/android/android_alloc_adaptor.h"
587+#include "src/server/graphics/android/android_alloc_adaptor.h"
588
589 #include "mir_test_doubles/mock_android_alloc_device.h"
590 #include "mir_test_doubles/mock_alloc_adaptor.h"
591
592=== modified file 'tests/unit-tests/graphics/android/test_android_alloc_adaptor_native_win.cpp'
593--- tests/unit-tests/graphics/android/test_android_alloc_adaptor_native_win.cpp 2013-01-10 16:40:10 +0000
594+++ tests/unit-tests/graphics/android/test_android_alloc_adaptor_native_win.cpp 2013-03-13 09:54:21 +0000
595@@ -16,7 +16,7 @@
596 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
597 */
598
599-#include "src/graphics/android/android_buffer_handle_default.h"
600+#include "src/server/graphics/android/android_buffer_handle_default.h"
601 #include "mir/compositor/buffer_ipc_package.h"
602 #include "mir_test_doubles/mock_alloc_adaptor.h"
603 #include "mir_test_doubles/mock_android_alloc_device.h"
604
605=== modified file 'tests/unit-tests/graphics/android/test_android_buffer.cpp'
606--- tests/unit-tests/graphics/android/test_android_buffer.cpp 2012-12-19 16:01:00 +0000
607+++ tests/unit-tests/graphics/android/test_android_buffer.cpp 2013-03-13 09:54:21 +0000
608@@ -16,7 +16,7 @@
609 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
610 */
611
612-#include "src/graphics/android/android_buffer.h"
613+#include "src/server/graphics/android/android_buffer.h"
614 #include "mir/compositor/buffer_ipc_package.h"
615 #include "mir_test_doubles/mock_alloc_adaptor.h"
616
617
618=== modified file 'tests/unit-tests/graphics/android/test_android_buffer_allocator.cpp'
619--- tests/unit-tests/graphics/android/test_android_buffer_allocator.cpp 2012-12-19 16:01:00 +0000
620+++ tests/unit-tests/graphics/android/test_android_buffer_allocator.cpp 2013-03-13 09:54:21 +0000
621@@ -16,7 +16,7 @@
622 * Authored by: Alexandros Frantzis <alexandros.frantzis@canonical.com>
623 */
624
625-#include "src/graphics/android/android_buffer_allocator.h"
626+#include "src/server/graphics/android/android_buffer_allocator.h"
627
628 #include <gtest/gtest.h>
629
630
631=== modified file 'tests/unit-tests/graphics/android/test_android_fb.cpp'
632--- tests/unit-tests/graphics/android/test_android_fb.cpp 2013-01-21 16:02:54 +0000
633+++ tests/unit-tests/graphics/android/test_android_fb.cpp 2013-03-13 09:54:21 +0000
634@@ -16,8 +16,8 @@
635 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
636 */
637
638-#include "src/graphics/android/android_display.h"
639-#include "src/graphics/android/android_framebuffer_window_query.h"
640+#include "src/server/graphics/android/android_display.h"
641+#include "src/server/graphics/android/android_framebuffer_window_query.h"
642 #include "mir_test/egl_mock.h"
643
644 #include <gtest/gtest.h>
645
646=== modified file 'tests/unit-tests/graphics/android/test_android_framebuffer_window.cpp'
647--- tests/unit-tests/graphics/android/test_android_framebuffer_window.cpp 2012-10-30 12:28:28 +0000
648+++ tests/unit-tests/graphics/android/test_android_framebuffer_window.cpp 2013-03-13 09:54:21 +0000
649@@ -16,7 +16,7 @@
650 * Authored by: Kevin DuBois <kevin.dubois@canonical.com>
651 */
652
653-#include "src/graphics/android/android_framebuffer_window.h"
654+#include "src/server/graphics/android/android_framebuffer_window.h"
655
656 #include "mir_test/egl_mock.h"
657
658
659=== modified file 'tests/unit-tests/graphics/gbm/test_gbm_buffer.cpp'
660--- tests/unit-tests/graphics/gbm/test_gbm_buffer.cpp 2013-03-07 08:04:05 +0000
661+++ tests/unit-tests/graphics/gbm/test_gbm_buffer.cpp 2013-03-13 09:54:21 +0000
662@@ -21,9 +21,9 @@
663 #include "mock_drm.h"
664 #include "mock_gbm.h"
665
666-#include "src/graphics/gbm/gbm_platform.h"
667-#include "src/graphics/gbm/gbm_buffer.h"
668-#include "src/graphics/gbm/gbm_buffer_allocator.h"
669+#include "src/server/graphics/gbm/gbm_platform.h"
670+#include "src/server/graphics/gbm/gbm_buffer.h"
671+#include "src/server/graphics/gbm/gbm_buffer_allocator.h"
672 #include "mir/graphics/buffer_initializer.h"
673 #include "mir/compositor/buffer_ipc_package.h"
674 #include "mir/compositor/buffer_properties.h"
675
676=== modified file 'tests/unit-tests/graphics/gbm/test_gbm_buffer_allocator.cpp'
677--- tests/unit-tests/graphics/gbm/test_gbm_buffer_allocator.cpp 2013-03-07 08:04:05 +0000
678+++ tests/unit-tests/graphics/gbm/test_gbm_buffer_allocator.cpp 2013-03-13 09:54:21 +0000
679@@ -17,9 +17,9 @@
680 * Authored by: Christopher James Halse Rogers <christopher.halse.rogers@canonical.com>
681 */
682
683-#include "src/graphics/gbm/gbm_platform.h"
684+#include "src/server/graphics/gbm/gbm_platform.h"
685 #include "mir/compositor/graphic_buffer_allocator.h"
686-#include "src/graphics/gbm/gbm_buffer_allocator.h"
687+#include "src/server/graphics/gbm/gbm_buffer_allocator.h"
688 #include "mir/compositor/buffer_properties.h"
689
690 #include "mock_drm.h"
691
692=== modified file 'tests/unit-tests/graphics/gbm/test_gbm_display.cpp'
693--- tests/unit-tests/graphics/gbm/test_gbm_display.cpp 2013-03-07 08:04:05 +0000
694+++ tests/unit-tests/graphics/gbm/test_gbm_display.cpp 2013-03-13 09:54:21 +0000
695@@ -16,8 +16,8 @@
696 * Authored by: Alexandros Frantzis <alexandros.frantzis@canonical.com>
697 */
698 #include <boost/throw_exception.hpp>
699-#include "src/graphics/gbm/gbm_platform.h"
700-#include "src/graphics/gbm/gbm_display.h"
701+#include "src/server/graphics/gbm/gbm_platform.h"
702+#include "src/server/graphics/gbm/gbm_display.h"
703 #include "mir/logging/display_report.h"
704 #include "mir/logging/logger.h"
705
706
707=== modified file 'tests/unit-tests/graphics/gbm/test_gbm_display_configuration.cpp'
708--- tests/unit-tests/graphics/gbm/test_gbm_display_configuration.cpp 2013-03-07 08:04:05 +0000
709+++ tests/unit-tests/graphics/gbm/test_gbm_display_configuration.cpp 2013-03-13 09:54:21 +0000
710@@ -19,8 +19,8 @@
711 #include <boost/throw_exception.hpp>
712 #include "mir/graphics/display_configuration.h"
713 #include "mir/graphics/display.h"
714-#include "src/graphics/gbm/gbm_platform.h"
715-#include "src/graphics/gbm/kms_display_configuration.h"
716+#include "src/server/graphics/gbm/gbm_platform.h"
717+#include "src/server/graphics/gbm/kms_display_configuration.h"
718
719 #include "mir_test/egl_mock.h"
720 #include "mir_test/gl_mock.h"
721
722=== modified file 'tests/unit-tests/graphics/gbm/test_gbm_display_multi_monitor.cpp'
723--- tests/unit-tests/graphics/gbm/test_gbm_display_multi_monitor.cpp 2013-03-07 08:04:05 +0000
724+++ tests/unit-tests/graphics/gbm/test_gbm_display_multi_monitor.cpp 2013-03-13 09:54:21 +0000
725@@ -18,7 +18,7 @@
726
727 #include "mir/graphics/display.h"
728 #include "mir/graphics/display_buffer.h"
729-#include "src/graphics/gbm/gbm_platform.h"
730+#include "src/server/graphics/gbm/gbm_platform.h"
731
732 #include "mir_test/egl_mock.h"
733 #include "mir_test/gl_mock.h"
734
735=== modified file 'tests/unit-tests/graphics/gbm/test_kms_output.cpp'
736--- tests/unit-tests/graphics/gbm/test_kms_output.cpp 2013-02-08 17:56:11 +0000
737+++ tests/unit-tests/graphics/gbm/test_kms_output.cpp 2013-03-13 09:54:21 +0000
738@@ -16,8 +16,8 @@
739 * Authored by: Alexandros Frantzis <alexandros.frantzis@canonical.com>
740 */
741
742-#include "src/graphics/gbm/kms_output.h"
743-#include "src/graphics/gbm/page_flipper.h"
744+#include "src/server/graphics/gbm/kms_output.h"
745+#include "src/server/graphics/gbm/page_flipper.h"
746
747 #include "mir_test/fake_shared.h"
748
749
750=== modified file 'tests/unit-tests/graphics/gbm/test_kms_page_flipper.cpp'
751--- tests/unit-tests/graphics/gbm/test_kms_page_flipper.cpp 2013-03-07 08:04:05 +0000
752+++ tests/unit-tests/graphics/gbm/test_kms_page_flipper.cpp 2013-03-13 09:54:21 +0000
753@@ -16,12 +16,12 @@
754 * Authored by: Alexandros Frantzis <alexandros.frantzis@canonical.com>
755 */
756
757-#include "src/graphics/gbm/kms_page_flipper.h"
758+#include "src/server/graphics/gbm/kms_page_flipper.h"
759
760 #include "mock_drm.h"
761-#include "include/mir_test_doubles/mock_display_report.h"
762-#include "include/mir/graphics/null_display_report.h"
763-#include "include/mir_test/fake_shared.h"
764+#include "mir_test_doubles/mock_display_report.h"
765+#include "mir/graphics/null_display_report.h"
766+#include "mir_test/fake_shared.h"
767
768 #include <gtest/gtest.h>
769 #include <gmock/gmock.h>
770
771=== modified file 'tests/unit-tests/input/android/test_android_communication_package.cpp'
772--- tests/unit-tests/input/android/test_android_communication_package.cpp 2013-03-11 19:23:19 +0000
773+++ tests/unit-tests/input/android/test_android_communication_package.cpp 2013-03-13 09:54:21 +0000
774@@ -16,7 +16,7 @@
775 * Authored by: Robert Carr <robert.carr@canonical.com>
776 */
777
778-#include "src/input/android/android_input_channel.h"
779+#include "src/server/input/android/android_input_channel.h"
780
781 #include <gtest/gtest.h>
782 #include <gmock/gmock.h>
783
784=== modified file 'tests/unit-tests/input/android/test_android_input_lexicon.cpp'
785--- tests/unit-tests/input/android/test_android_input_lexicon.cpp 2013-03-07 08:04:05 +0000
786+++ tests/unit-tests/input/android/test_android_input_lexicon.cpp 2013-03-13 09:54:21 +0000
787@@ -15,7 +15,7 @@
788 *
789 * Authored by: Robert Carr <robert.carr@canonical.com>
790 */
791-#include "src/input/android/android_input_lexicon.h"
792+#include "src/server/input/android/android_input_lexicon.h"
793 // Is this the right place for this header? Will eventually be included by clients.
794 #include "mir_toolkit/input/event.h"
795
796
797=== modified file 'tests/unit-tests/input/android/test_android_input_manager.cpp'
798--- tests/unit-tests/input/android/test_android_input_manager.cpp 2013-03-11 19:26:34 +0000
799+++ tests/unit-tests/input/android/test_android_input_manager.cpp 2013-03-13 09:54:21 +0000
800@@ -16,10 +16,10 @@
801 * Authored by: Robert Carr <robert.carr@canonical.com>
802 */
803
804-#include "src/input/android/android_input_manager.h"
805-#include "src/input/android/android_input_configuration.h"
806-#include "src/input/android/android_input_thread.h"
807-#include "src/input/android/android_input_constants.h"
808+#include "src/server/input/android/android_input_manager.h"
809+#include "src/server/input/android/android_input_configuration.h"
810+#include "src/server/input/android/android_input_thread.h"
811+#include "src/server/input/android/android_input_constants.h"
812
813 #include "mir/input/input_channel.h"
814
815
816=== modified file 'tests/unit-tests/input/android/test_android_input_reader_policy.cpp'
817--- tests/unit-tests/input/android/test_android_input_reader_policy.cpp 2013-01-18 10:01:05 +0000
818+++ tests/unit-tests/input/android/test_android_input_reader_policy.cpp 2013-03-13 09:54:21 +0000
819@@ -19,7 +19,7 @@
820 #include "mir_test_doubles/mock_viewable_area.h"
821 #include "mir_test/fake_shared.h"
822
823-#include "src/input/android/android_input_reader_policy.h"
824+#include "src/server/input/android/android_input_reader_policy.h"
825 #include "mir/geometry/rectangle.h"
826
827 #include <gtest/gtest.h>
828
829=== modified file 'tests/unit-tests/input/android/test_android_pointer_controller.cpp'
830--- tests/unit-tests/input/android/test_android_pointer_controller.cpp 2013-01-18 10:01:05 +0000
831+++ tests/unit-tests/input/android/test_android_pointer_controller.cpp 2013-03-13 09:54:21 +0000
832@@ -16,7 +16,7 @@
833 * Authored by: Robert Carr <robert.carr@canonical.com>
834 */
835
836-#include "src/input/android/android_pointer_controller.h"
837+#include "src/server/input/android/android_pointer_controller.h"
838
839 #include "mir_test_doubles/mock_viewable_area.h"
840 #include "mir_test/event_factory.h"
841
842=== modified file 'tests/unit-tests/input/android/test_event_filter_chain.cpp'
843--- tests/unit-tests/input/android/test_event_filter_chain.cpp 2013-01-18 10:09:43 +0000
844+++ tests/unit-tests/input/android/test_event_filter_chain.cpp 2013-03-13 09:54:21 +0000
845@@ -16,7 +16,7 @@
846 * Authored by: Robert Carr <robert.carr@canonical.com>
847 */
848
849-#include "src/input/event_filter_chain.h"
850+#include "src/server/input/event_filter_chain.h"
851 #include "mir_test_doubles/mock_event_filter.h"
852
853 #include <androidfw/Input.h>
854
855=== modified file 'tests/unit-tests/input/android/test_event_filter_input_dispatcher_policy.cpp'
856--- tests/unit-tests/input/android/test_event_filter_input_dispatcher_policy.cpp 2013-01-18 10:01:05 +0000
857+++ tests/unit-tests/input/android/test_event_filter_input_dispatcher_policy.cpp 2013-03-13 09:54:21 +0000
858@@ -17,7 +17,7 @@
859 */
860
861 #include "mir/input/event_filter.h"
862-#include "src/input/android/event_filter_dispatcher_policy.h"
863+#include "src/server/input/android/event_filter_dispatcher_policy.h"
864
865 #include "mir_test/fake_shared.h"
866 #include "mir_test_doubles/mock_event_filter.h"
867
868=== modified file 'tests/unit-tests/shell/test_application_session.cpp'
869--- tests/unit-tests/shell/test_application_session.cpp 2013-03-12 21:25:44 +0000
870+++ tests/unit-tests/shell/test_application_session.cpp 2013-03-13 09:54:21 +0000
871@@ -23,7 +23,7 @@
872 #include "mir_test_doubles/mock_surface_factory.h"
873 #include "mir_test_doubles/mock_surface.h"
874
875-#include "src/surfaces/proxy_surface.h"
876+#include "src/server/surfaces/proxy_surface.h"
877
878 #include <gmock/gmock.h>
879 #include <gtest/gtest.h>
880
881=== modified file 'tests/unit-tests/shell/test_session_manager.cpp'
882--- tests/unit-tests/shell/test_session_manager.cpp 2013-03-12 21:25:44 +0000
883+++ tests/unit-tests/shell/test_session_manager.cpp 2013-03-13 09:54:21 +0000
884@@ -29,7 +29,7 @@
885 #include "mir_test_doubles/mock_surface_factory.h"
886 #include "mir_test_doubles/null_buffer_bundle.h"
887
888-#include "src/surfaces/proxy_surface.h"
889+#include "src/server/surfaces/proxy_surface.h"
890
891 #include <gmock/gmock.h>
892 #include <gtest/gtest.h>
893
894=== modified file 'tests/unit-tests/surfaces/test_proxy_surface.cpp'
895--- tests/unit-tests/surfaces/test_proxy_surface.cpp 2013-03-12 21:25:44 +0000
896+++ tests/unit-tests/surfaces/test_proxy_surface.cpp 2013-03-13 09:54:21 +0000
897@@ -16,7 +16,7 @@
898 * Authored by: Alan Griffiths <alan@octopull.co.uk>
899 */
900
901-#include "src/surfaces/proxy_surface.h"
902+#include "src/server/surfaces/proxy_surface.h"
903 #include "mir/surfaces/surface.h"
904 #include "mir/shell/surface_creation_parameters.h"
905 #include "mir/surfaces/surface_stack_model.h"

Subscribers

People subscribed via source and target branches

to all changes: