source-info.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. {
  2. "cocoa": {
  3. "headers": [
  4. "cocoa_platform.h",
  5. "cocoa_joystick.h",
  6. "posix_thread.h",
  7. "nsgl_context.h",
  8. "egl_context.h",
  9. "osmesa_context.h"
  10. ],
  11. "sources": [
  12. "cocoa_init.m",
  13. "cocoa_joystick.m",
  14. "cocoa_monitor.m",
  15. "cocoa_window.m",
  16. "posix_thread.c",
  17. "nsgl_context.m",
  18. "egl_context.c",
  19. "osmesa_context.c"
  20. ]
  21. },
  22. "common": {
  23. "headers": [
  24. "internal.h",
  25. "mappings.h"
  26. ],
  27. "sources": [
  28. "context.c",
  29. "init.c",
  30. "input.c",
  31. "monitor.c",
  32. "vulkan.c",
  33. "monotonic.c",
  34. "window.c"
  35. ]
  36. },
  37. "osmesa": {
  38. "headers": [
  39. "null_platform.h",
  40. "null_joystick.h",
  41. "posix_thread.h",
  42. "osmesa_context.h"
  43. ],
  44. "sources": [
  45. "null_init.c",
  46. "null_monitor.c",
  47. "null_window.c",
  48. "null_joystick.c",
  49. "posix_thread.c",
  50. "osmesa_context.c"
  51. ]
  52. },
  53. "wayland": {
  54. "headers": [
  55. "wl_platform.h",
  56. "posix_thread.h",
  57. "wl_cursors.h",
  58. "wl_text_input.h",
  59. "xkb_glfw.h",
  60. "dbus_glfw.h",
  61. "ibus_glfw.h",
  62. "backend_utils.h",
  63. "egl_context.h",
  64. "osmesa_context.h",
  65. "linux_joystick.h",
  66. "null_joystick.h",
  67. "linux_notify.h",
  68. "linux_desktop_settings.h",
  69. "wl_client_side_decorations.h",
  70. "main_loop.h"
  71. ],
  72. "protocols": [
  73. "stable/xdg-shell/xdg-shell.xml",
  74. "stable/viewporter/viewporter.xml",
  75. "unstable/relative-pointer/relative-pointer-unstable-v1.xml",
  76. "unstable/pointer-constraints/pointer-constraints-unstable-v1.xml",
  77. "unstable/xdg-decoration/xdg-decoration-unstable-v1.xml",
  78. "unstable/primary-selection/primary-selection-unstable-v1.xml",
  79. "unstable/text-input/text-input-unstable-v3.xml",
  80. "staging/xdg-activation/xdg-activation-v1.xml",
  81. "unstable/tablet/tablet-unstable-v2.xml",
  82. "staging/cursor-shape/cursor-shape-v1.xml",
  83. "staging/fractional-scale/fractional-scale-v1.xml",
  84. "staging/single-pixel-buffer/single-pixel-buffer-v1.xml",
  85. "unstable/idle-inhibit/idle-inhibit-unstable-v1.xml",
  86. "kwin-blur-v1.xml",
  87. "wlr-layer-shell-unstable-v1.xml"
  88. ],
  89. "sources": [
  90. "wl_init.c",
  91. "wl_monitor.c",
  92. "wl_window.c",
  93. "wl_cursors.c",
  94. "wl_text_input.c",
  95. "wl_client_side_decorations.c",
  96. "posix_thread.c",
  97. "xkb_glfw.c",
  98. "dbus_glfw.c",
  99. "ibus_glfw.c",
  100. "egl_context.c",
  101. "osmesa_context.c",
  102. "backend_utils.c",
  103. "linux_joystick.c",
  104. "linux_desktop_settings.c",
  105. "null_joystick.c",
  106. "linux_notify.c"
  107. ]
  108. },
  109. "wayland_protocols": [
  110. 1,
  111. 17
  112. ],
  113. "win32": {
  114. "headers": [
  115. "win32_platform.h",
  116. "win32_joystick.h",
  117. "wgl_context.h",
  118. "egl_context.h",
  119. "osmesa_context.h"
  120. ],
  121. "sources": [
  122. "win32_init.c",
  123. "win32_joystick.c",
  124. "win32_monitor.c",
  125. "win32_time.c",
  126. "win32_thread.c",
  127. "win32_window.c",
  128. "wgl_context.c",
  129. "egl_context.c",
  130. "osmesa_context.c"
  131. ]
  132. },
  133. "x11": {
  134. "headers": [
  135. "x11_platform.h",
  136. "xkb_glfw.h",
  137. "dbus_glfw.h",
  138. "ibus_glfw.h",
  139. "backend_utils.h",
  140. "posix_thread.h",
  141. "glx_context.h",
  142. "egl_context.h",
  143. "osmesa_context.h",
  144. "linux_joystick.h",
  145. "null_joystick.h",
  146. "linux_notify.h",
  147. "linux_desktop_settings.h",
  148. "main_loop.h"
  149. ],
  150. "sources": [
  151. "x11_init.c",
  152. "x11_monitor.c",
  153. "x11_window.c",
  154. "xkb_glfw.c",
  155. "dbus_glfw.c",
  156. "ibus_glfw.c",
  157. "posix_thread.c",
  158. "glx_context.c",
  159. "egl_context.c",
  160. "osmesa_context.c",
  161. "backend_utils.c",
  162. "linux_joystick.c",
  163. "null_joystick.c",
  164. "linux_desktop_settings.c",
  165. "linux_notify.c"
  166. ]
  167. }
  168. }