Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 1 | # Copyright 2019 The SwiftShader Authors. All Rights Reserved. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | import("//build_overrides/build.gni") |
Nicolas Capens | 74c7113 | 2022-06-20 09:34:47 -0400 | [diff] [blame] | 16 | import("//build_overrides/wayland.gni") |
Yaroslav Isakov | e0d50dd | 2022-07-20 19:41:18 +0200 | [diff] [blame] | 17 | import("//build/config/ozone.gni") |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 18 | import("../swiftshader.gni") |
Corentin Wallez | e7ce4e5 | 2019-11-22 16:13:50 +0100 | [diff] [blame] | 19 | import("vulkan.gni") |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 20 | |
| 21 | # Need a separate config to ensure the warnings are added to the end. |
| 22 | config("swiftshader_libvulkan_private_config") { |
Ben Clayton | be3a0de | 2022-01-20 15:34:07 +0000 | [diff] [blame] | 23 | if (is_linux) { |
Alexis Hetu | 110f60e | 2019-06-04 10:02:09 -0400 | [diff] [blame] | 24 | defines = [ |
Alexis Hetu | 110f60e | 2019-06-04 10:02:09 -0400 | [diff] [blame] | 25 | "VK_EXPORT=__attribute__((visibility(\"default\")))", |
| 26 | ] |
Yaroslav Isakov | e0d50dd | 2022-07-20 19:41:18 +0200 | [diff] [blame] | 27 | if (ozone_platform_x11) { |
| 28 | defines += [ "VK_USE_PLATFORM_XCB_KHR" ] |
| 29 | } |
Nicolas Capens | 74c7113 | 2022-06-20 09:34:47 -0400 | [diff] [blame] | 30 | if (ozone_platform_wayland) { |
| 31 | defines += [ "VK_USE_PLATFORM_WAYLAND_KHR" ] |
| 32 | } |
Ben Clayton | be3a0de | 2022-01-20 15:34:07 +0000 | [diff] [blame] | 33 | } else if (is_chromeos) { |
| 34 | defines = [ |
| 35 | "VK_EXPORT=__attribute__((visibility(\"default\")))", |
| 36 | ] |
David 'Digit' Turner | 58c34f5 | 2019-08-12 14:11:58 +0200 | [diff] [blame] | 37 | } else if (is_fuchsia) { |
| 38 | defines = [ |
| 39 | "VK_USE_PLATFORM_FUCHSIA=1", |
| 40 | "VK_EXPORT=__attribute__((visibility(\"default\")))", |
| 41 | ] |
Jamie Madill | bbd8c42 | 2019-08-28 17:08:17 -0400 | [diff] [blame] | 42 | } else if (is_win) { |
| 43 | defines = [ |
| 44 | "VK_USE_PLATFORM_WIN32_KHR=1", |
| 45 | "VK_EXPORT=", |
| 46 | ] |
Jonah Ryan-Davis | 6623ca1 | 2019-10-25 10:44:05 -0600 | [diff] [blame] | 47 | } else if (is_mac) { |
| 48 | defines = [ |
| 49 | "VK_USE_PLATFORM_MACOS_MVK=1", |
Jonah Ryan-Davis | 215bc79 | 2019-10-31 17:23:49 -0400 | [diff] [blame] | 50 | "VK_USE_PLATFORM_METAL_EXT=1", |
Jonah Ryan-Davis | 6623ca1 | 2019-10-25 10:44:05 -0600 | [diff] [blame] | 51 | "VK_EXPORT=__attribute__((visibility(\"default\")))", |
| 52 | ] |
Alexis Hetu | 110f60e | 2019-06-04 10:02:09 -0400 | [diff] [blame] | 53 | } else { |
| 54 | defines = [ "VK_EXPORT=" ] |
| 55 | } |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 56 | |
Jamie Madill | 9746f8b | 2019-09-05 13:17:09 -0400 | [diff] [blame] | 57 | if (is_clang) { |
| 58 | cflags = [ |
| 59 | "-Wno-unused-private-field", |
| 60 | "-Wno-switch", |
| 61 | ] |
| 62 | } |
Nicolas Capens | a4347a9 | 2020-03-01 08:29:25 -0500 | [diff] [blame] | 63 | |
| 64 | defines += [ |
| 65 | "SWIFTSHADER_ENABLE_ASTC", # TODO(b/150130101) |
Alexis Hétu | 22d5e1e | 2022-12-13 04:11:10 +0000 | [diff] [blame] | 66 | "SWIFTSHADER_LEGACY_PRECISION=true", # TODO(chromium:1299047) |
Nicolas Capens | 5ca5b0a | 2022-05-25 17:04:06 -0400 | [diff] [blame] | 67 | "SWIFTSHADER_ZERO_INITIALIZE_DEVICE_MEMORY", |
Nicolas Capens | a4347a9 | 2020-03-01 08:29:25 -0500 | [diff] [blame] | 68 | ] |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 69 | } |
| 70 | |
Jamie Madill | fe23c66 | 2019-08-30 17:38:24 -0400 | [diff] [blame] | 71 | swiftshader_source_set("swiftshader_libvulkan_headers") { |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 72 | sources = [ |
Antonio Maiorano | 42fd159 | 2020-04-27 11:30:40 -0400 | [diff] [blame] | 73 | "Version.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 74 | "VkBuffer.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 75 | "VkBufferView.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 76 | "VkCommandBuffer.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 77 | "VkCommandPool.hpp", |
Antonio Maiorano | 42fd159 | 2020-04-27 11:30:40 -0400 | [diff] [blame] | 78 | "VkConfig.hpp", |
Alexis Hetu | 74f6c65 | 2020-07-22 21:57:05 -0400 | [diff] [blame] | 79 | "VkDebugUtilsMessenger.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 80 | "VkDescriptorPool.hpp", |
| 81 | "VkDescriptorSet.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 82 | "VkDescriptorSetLayout.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 83 | "VkDescriptorUpdateTemplate.hpp", |
Antonio Maiorano | 42fd159 | 2020-04-27 11:30:40 -0400 | [diff] [blame] | 84 | "VkDestroy.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 85 | "VkDevice.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 86 | "VkDeviceMemory.hpp", |
Alexis Hetu | a1594b9 | 2021-10-07 15:48:06 -0400 | [diff] [blame] | 87 | "VkDeviceMemoryExternalHost.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 88 | "VkEvent.hpp", |
| 89 | "VkFence.hpp", |
Antonio Maiorano | 42fd159 | 2020-04-27 11:30:40 -0400 | [diff] [blame] | 90 | "VkFormat.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 91 | "VkFramebuffer.hpp", |
Antonio Maiorano | 42fd159 | 2020-04-27 11:30:40 -0400 | [diff] [blame] | 92 | "VkGetProcAddress.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 93 | "VkImage.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 94 | "VkImageView.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 95 | "VkInstance.hpp", |
Antonio Maiorano | 42fd159 | 2020-04-27 11:30:40 -0400 | [diff] [blame] | 96 | "VkMemory.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 97 | "VkObject.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 98 | "VkPhysicalDevice.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 99 | "VkPipeline.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 100 | "VkPipelineCache.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 101 | "VkPipelineLayout.hpp", |
Alexis Hetu | ea98060 | 2021-10-29 09:27:51 -0400 | [diff] [blame] | 102 | "VkPrivateData.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 103 | "VkQueryPool.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 104 | "VkQueue.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 105 | "VkRenderPass.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 106 | "VkSampler.hpp", |
| 107 | "VkSemaphore.hpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 108 | "VkShaderModule.hpp", |
Ben Clayton | 4d23aa3 | 2020-04-14 20:33:52 +0100 | [diff] [blame] | 109 | "VkSpecializationInfo.hpp", |
Ben Clayton | 597db18 | 2019-11-24 22:40:40 +0000 | [diff] [blame] | 110 | "VkStringify.hpp", |
Alexis Hetu | 62c5ce3 | 2021-11-11 16:30:00 -0500 | [diff] [blame] | 111 | "VkStructConversion.hpp", |
Sean Risser | 6846389 | 2020-12-14 16:35:57 -0500 | [diff] [blame] | 112 | "VkTimelineSemaphore.hpp", |
Antonio Maiorano | 42fd159 | 2020-04-27 11:30:40 -0400 | [diff] [blame] | 113 | "VulkanPlatform.hpp", |
Jamie Madill | fe23c66 | 2019-08-30 17:38:24 -0400 | [diff] [blame] | 114 | ] |
Hidehiko Abe | fe878de | 2020-09-11 16:12:25 +0900 | [diff] [blame] | 115 | if (is_linux || is_chromeos || is_android) { |
David 'Digit' Turner | 7c4d0a0 | 2019-09-03 17:00:02 +0200 | [diff] [blame] | 116 | sources += [ |
David 'Digit' Turner | 359bc80 | 2019-08-14 17:46:07 +0200 | [diff] [blame] | 117 | "VkDeviceMemoryExternalLinux.hpp", |
David 'Digit' Turner | 7c4d0a0 | 2019-09-03 17:00:02 +0200 | [diff] [blame] | 118 | "VkSemaphoreExternalLinux.hpp", |
| 119 | ] |
David 'Digit' Turner | 89fd148 | 2020-02-20 13:12:08 +0100 | [diff] [blame] | 120 | } else if (is_mac) { |
| 121 | sources += [ |
| 122 | "VkDeviceMemoryExternalMac.hpp", |
| 123 | ] |
David 'Digit' Turner | fda994c | 2019-09-04 16:36:36 +0200 | [diff] [blame] | 124 | } else if (is_fuchsia) { |
Corentin Wallez | e7ce4e5 | 2019-11-22 16:13:50 +0100 | [diff] [blame] | 125 | sources += [ "VkSemaphoreExternalFuchsia.hpp" ] |
David 'Digit' Turner | 7c4d0a0 | 2019-09-03 17:00:02 +0200 | [diff] [blame] | 126 | } |
Jamie Madill | fe23c66 | 2019-08-30 17:38:24 -0400 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | swiftshader_shared_library("swiftshader_libvulkan") { |
| 130 | sources = [ |
| 131 | "VkBuffer.cpp", |
| 132 | "VkBufferView.cpp", |
| 133 | "VkCommandBuffer.cpp", |
| 134 | "VkCommandPool.cpp", |
Alexis Hetu | 74f6c65 | 2020-07-22 21:57:05 -0400 | [diff] [blame] | 135 | "VkDebugUtilsMessenger.cpp", |
Jamie Madill | fe23c66 | 2019-08-30 17:38:24 -0400 | [diff] [blame] | 136 | "VkDescriptorPool.cpp", |
Alexis Hetu | 4f438a5 | 2020-06-15 16:13:51 -0400 | [diff] [blame] | 137 | "VkDescriptorSet.cpp", |
Jamie Madill | fe23c66 | 2019-08-30 17:38:24 -0400 | [diff] [blame] | 138 | "VkDescriptorSetLayout.cpp", |
| 139 | "VkDescriptorUpdateTemplate.cpp", |
| 140 | "VkDevice.cpp", |
| 141 | "VkDeviceMemory.cpp", |
Alexis Hetu | a1594b9 | 2021-10-07 15:48:06 -0400 | [diff] [blame] | 142 | "VkDeviceMemoryExternalHost.cpp", |
Jamie Madill | fe23c66 | 2019-08-30 17:38:24 -0400 | [diff] [blame] | 143 | "VkFormat.cpp", |
| 144 | "VkFramebuffer.cpp", |
| 145 | "VkGetProcAddress.cpp", |
| 146 | "VkImage.cpp", |
| 147 | "VkImageView.cpp", |
| 148 | "VkInstance.cpp", |
| 149 | "VkMemory.cpp", |
| 150 | "VkPhysicalDevice.cpp", |
| 151 | "VkPipeline.cpp", |
| 152 | "VkPipelineCache.cpp", |
| 153 | "VkPipelineLayout.cpp", |
| 154 | "VkPromotedExtensions.cpp", |
| 155 | "VkQueryPool.cpp", |
| 156 | "VkQueue.cpp", |
| 157 | "VkRenderPass.cpp", |
| 158 | "VkSampler.cpp", |
David 'Digit' Turner | 99938ea | 2019-09-03 15:11:17 +0200 | [diff] [blame] | 159 | "VkSemaphore.cpp", |
Jamie Madill | fe23c66 | 2019-08-30 17:38:24 -0400 | [diff] [blame] | 160 | "VkShaderModule.cpp", |
Ben Clayton | 4d23aa3 | 2020-04-14 20:33:52 +0100 | [diff] [blame] | 161 | "VkSpecializationInfo.cpp", |
Ben Clayton | d44d615 | 2019-11-24 22:40:40 +0000 | [diff] [blame] | 162 | "VkStringify.cpp", |
Sean Risser | 6846389 | 2020-12-14 16:35:57 -0500 | [diff] [blame] | 163 | "VkTimelineSemaphore.cpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 164 | "libVulkan.cpp", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 165 | "main.cpp", |
| 166 | "resource.h", |
| 167 | ] |
| 168 | |
| 169 | configs = [ ":swiftshader_libvulkan_private_config" ] |
| 170 | |
Dan Field | bea8d24 | 2022-06-13 12:55:52 -0700 | [diff] [blame] | 171 | libs = [] |
| 172 | |
Jamie Madill | 9746f8b | 2019-09-05 13:17:09 -0400 | [diff] [blame] | 173 | # TODO(capn): Use the same ICD name on both Windows and non-Windows. |
| 174 | if (is_win) { |
| 175 | output_name = "vk_swiftshader" |
| 176 | } else { |
| 177 | output_name = "libvk_swiftshader" |
| 178 | } |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 179 | |
Sylvain Defresne | b94db86 | 2020-09-24 11:47:25 +0200 | [diff] [blame] | 180 | if (is_win) { |
| 181 | sources += [ |
| 182 | "Vulkan.rc", |
| 183 | "vk_swiftshader.def", |
| 184 | ] |
Dan Field | bea8d24 | 2022-06-13 12:55:52 -0700 | [diff] [blame] | 185 | libs += [ |
| 186 | "gdi32.lib", |
| 187 | "user32.lib", |
| 188 | ] |
Sylvain Defresne | b94db86 | 2020-09-24 11:47:25 +0200 | [diff] [blame] | 189 | } |
| 190 | |
Alexis Hetu | ec63fbe | 2019-07-15 14:33:11 -0400 | [diff] [blame] | 191 | if (is_mac) { |
| 192 | ldflags = [ |
| 193 | "-Wl,-install_name,@rpath/libvk_swiftshader.dylib", |
| 194 | "-Wl,-exported_symbols_list," + |
Nicolas Capens | f003332 | 2019-08-30 12:51:12 -0400 | [diff] [blame] | 195 | rebase_path("vk_swiftshader.exports", root_build_dir), |
Alexis Hetu | ec63fbe | 2019-07-15 14:33:11 -0400 | [diff] [blame] | 196 | ] |
Hidehiko Abe | fe878de | 2020-09-11 16:12:25 +0900 | [diff] [blame] | 197 | } else if (is_linux || is_chromeos || is_fuchsia) { |
Tom Anderson | 42d6461 | 2019-06-12 11:05:21 -0700 | [diff] [blame] | 198 | inputs = [ |
Nicolas Capens | f003332 | 2019-08-30 12:51:12 -0400 | [diff] [blame] | 199 | "vk_swiftshader.lds", |
Tom Anderson | 42d6461 | 2019-06-12 11:05:21 -0700 | [diff] [blame] | 200 | ] |
Nicolas Capens | e3621dc | 2020-02-25 22:45:42 -0500 | [diff] [blame] | 201 | ldflags = [ |
| 202 | # -Bsymbolic binds symbol references to their global definitions within |
| 203 | # a shared object, thereby preventing symbol preemption. |
| 204 | "-Wl,-Bsymbolic", |
| 205 | "-Wl,--version-script=" + |
| 206 | rebase_path("vk_swiftshader.lds", root_build_dir) ] |
Alexis Hetu | f9e9cf6 | 2019-06-05 17:18:40 -0400 | [diff] [blame] | 207 | } |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 208 | |
| 209 | deps = [ |
Nicolas Capens | dde3145 | 2022-03-18 16:09:22 -0400 | [diff] [blame] | 210 | "../../third_party/SPIRV-Tools:spvtools_opt", |
| 211 | "../../third_party/SPIRV-Tools:spvtools_val", |
| 212 | "../../third_party/SPIRV-Tools:spvtools_headers", |
Corentin Wallez | e7ce4e5 | 2019-11-22 16:13:50 +0100 | [diff] [blame] | 213 | "../../third_party/marl:Marl", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 214 | "../Device", |
| 215 | "../Pipeline", |
Alexis Hetu | f6e439f | 2020-03-10 16:44:26 -0400 | [diff] [blame] | 216 | "../Reactor:swiftshader_reactor", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 217 | "../System", |
| 218 | "../WSI", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 219 | ] |
| 220 | |
| 221 | include_dirs = [ |
| 222 | "..", |
| 223 | "../../include", |
Nicolas Capens | dde3145 | 2022-03-18 16:09:22 -0400 | [diff] [blame] | 224 | "../../third_party/SPIRV-Tools/include", |
| 225 | "../../third_party/SPIRV-Headers/include", |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 226 | ] |
Jamie Madill | fe23c66 | 2019-08-30 17:38:24 -0400 | [diff] [blame] | 227 | |
| 228 | public_deps = [ |
| 229 | ":swiftshader_libvulkan_headers", |
| 230 | ] |
Saman Sami | f4d2a44 | 2019-05-21 15:04:41 -0400 | [diff] [blame] | 231 | } |
Corentin Wallez | e7ce4e5 | 2019-11-22 16:13:50 +0100 | [diff] [blame] | 232 | |
| 233 | # Generates an ICD JSON file that can be used by all targets in this GN build |
| 234 | # (ANGLE, Dawn, Chromium). |
| 235 | action("icd_file") { |
Jamie Madill | 2613cb5 | 2019-11-27 08:34:49 -0500 | [diff] [blame] | 236 | output_icd_file = "${root_out_dir}/${swiftshader_icd_file_name}" |
Corentin Wallez | e7ce4e5 | 2019-11-22 16:13:50 +0100 | [diff] [blame] | 237 | input_file = swiftshader_icd_file_name |
| 238 | |
| 239 | if (is_win) { |
| 240 | library_path = ".\\vk_swiftshader.dll" |
| 241 | } else if (is_mac) { |
| 242 | library_path = "./libvk_swiftshader.dylib" |
Sergey Ulanov | 61f6c38 | 2021-11-12 02:02:57 +0000 | [diff] [blame] | 243 | } else if (is_fuchsia) { |
| 244 | library_path = "/pkg/lib/libvk_swiftshader.so" |
Corentin Wallez | e7ce4e5 | 2019-11-22 16:13:50 +0100 | [diff] [blame] | 245 | } else { |
| 246 | library_path = "./libvk_swiftshader.so" |
| 247 | } |
| 248 | |
| 249 | script = "write_icd_json.py" |
| 250 | args = [ |
| 251 | "--input", |
Jamie Madill | 389749a | 2019-11-28 10:35:58 -0500 | [diff] [blame] | 252 | rebase_path(input_file, root_build_dir), |
Corentin Wallez | e7ce4e5 | 2019-11-22 16:13:50 +0100 | [diff] [blame] | 253 | "--output", |
Jamie Madill | 389749a | 2019-11-28 10:35:58 -0500 | [diff] [blame] | 254 | rebase_path(output_icd_file, root_build_dir), |
Corentin Wallez | e7ce4e5 | 2019-11-22 16:13:50 +0100 | [diff] [blame] | 255 | "--library_path", |
| 256 | library_path, |
| 257 | ] |
| 258 | |
| 259 | inputs = [ |
| 260 | input_file, |
| 261 | ] |
| 262 | outputs = [ |
| 263 | output_icd_file, |
| 264 | ] |
| 265 | |
| 266 | deps = [ |
| 267 | ":swiftshader_libvulkan", |
| 268 | ] |
| 269 | } |