scroggo | 3e56227 | 2015-03-25 10:22:41 -0700 | [diff] [blame] | 1 | # Copyright 2015 Google Inc. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
commit-bot@chromium.org | 9d0ecf4 | 2014-02-27 20:40:31 +0000 | [diff] [blame] | 5 | # GYP for building gpu |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 6 | { |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 7 | 'target_defaults': { |
| 8 | 'conditions': [ |
| 9 | ['skia_os != "win"', { |
| 10 | 'sources/': [ ['exclude', '_win.(h|cpp)$'], |
| 11 | ], |
| 12 | }], |
| 13 | ['skia_os != "mac"', { |
bsalomon@google.com | 2b64f84 | 2012-10-02 15:25:12 +0000 | [diff] [blame] | 14 | 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 15 | ], |
| 16 | }], |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 17 | ['skia_os != "linux"', { |
derekf | 29dda80 | 2014-10-01 10:52:52 -0700 | [diff] [blame] | 18 | 'sources/': [ ['exclude', '_glx.(h|cpp)$'], |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 19 | ], |
| 20 | }], |
| 21 | ['skia_os != "ios"', { |
bsalomon@google.com | 2b64f84 | 2012-10-02 15:25:12 +0000 | [diff] [blame] | 22 | 'sources/': [ ['exclude', '_iOS.(h|cpp|m|mm)$'], |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 23 | ], |
| 24 | }], |
| 25 | ['skia_os != "android"', { |
| 26 | 'sources/': [ ['exclude', '_android.(h|cpp)$'], |
| 27 | ], |
| 28 | }], |
borenet | 4808757 | 2015-04-02 12:16:36 -0700 | [diff] [blame] | 29 | ['skia_egl == 0', { |
derekf | 29dda80 | 2014-10-01 10:52:52 -0700 | [diff] [blame] | 30 | 'sources/': [ ['exclude', '_egl.(h|cpp)$'], |
| 31 | ], |
| 32 | }], |
| 33 | ['skia_os == "android"', { |
| 34 | 'sources/': [ ['exclude', 'GrGLCreateNativeInterface_egl.cpp'], |
| 35 | ], |
| 36 | }], |
| 37 | ['skia_egl == 1', { |
| 38 | 'sources/': [ ['exclude', '_glx.(h|cpp)$'], |
| 39 | ], |
| 40 | }], |
bsalomon@google.com | cf8fb1f | 2012-08-02 14:03:32 +0000 | [diff] [blame] | 41 | # nullify the targets in this gyp file if skia_gpu is 0 |
| 42 | [ 'skia_gpu == 0', { |
| 43 | 'sources/': [ |
| 44 | ['exclude', '.*'], |
| 45 | ], |
| 46 | 'defines/': [ |
| 47 | ['exclude', '.*'], |
| 48 | ], |
| 49 | 'include_dirs/': [ |
| 50 | ['exclude', '.*'], |
| 51 | ], |
| 52 | 'link_settings': { |
| 53 | 'libraries/': [ |
| 54 | ['exclude', '.*'], |
| 55 | ], |
| 56 | }, |
| 57 | 'direct_dependent_settings': { |
| 58 | 'defines/': [ |
| 59 | ['exclude', '.*'], |
| 60 | ], |
| 61 | 'include_dirs/': [ |
| 62 | ['exclude', '.*'], |
| 63 | ], |
| 64 | }, |
| 65 | }], |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 66 | ], |
| 67 | 'direct_dependent_settings': { |
| 68 | 'conditions': [ |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 69 | [ 'skia_os == "win"', { |
| 70 | 'defines': [ |
bsalomon@google.com | e295313 | 2011-10-13 13:33:08 +0000 | [diff] [blame] | 71 | 'GR_GL_FUNCTION_TYPE=__stdcall', |
| 72 | ], |
| 73 | }], |
| 74 | ], |
| 75 | 'include_dirs': [ |
| 76 | '../include/gpu', |
| 77 | ], |
| 78 | }, |
| 79 | }, |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 80 | 'targets': [ |
| 81 | { |
robertphillips@google.com | e63296e | 2013-06-18 14:43:53 +0000 | [diff] [blame] | 82 | 'target_name': 'skgpu', |
| 83 | 'product_name': 'skia_skgpu', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 84 | 'type': 'static_library', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 85 | 'standalone_static_library': 1, |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 86 | 'dependencies': [ |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 87 | 'core.gyp:*', |
tomhudson | f7edcde | 2015-03-23 12:51:20 -0700 | [diff] [blame] | 88 | 'utils.gyp:utils', |
krajcevski | 9c0e629 | 2014-06-02 07:38:14 -0700 | [diff] [blame] | 89 | 'etc1.gyp:libetc1', |
krajcevski | 99ffe24 | 2014-06-03 13:04:35 -0700 | [diff] [blame] | 90 | 'ktx.gyp:libSkKTX', |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 91 | 'sksl.gyp:sksl', |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 92 | ], |
bsalomon@google.com | 2080635 | 2012-08-23 12:55:01 +0000 | [diff] [blame] | 93 | 'includes': [ |
| 94 | 'gpu.gypi', |
| 95 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 96 | 'include_dirs': [ |
bungeman@google.com | 899f1d8 | 2013-07-20 00:24:35 +0000 | [diff] [blame] | 97 | '../include/gpu', |
mtklein | cd1f2da | 2015-07-28 08:55:14 -0700 | [diff] [blame] | 98 | '../include/private', |
bungeman@google.com | b8f3655 | 2013-07-22 14:39:45 +0000 | [diff] [blame] | 99 | '../src/core', |
bsalomon@google.com | 9c1f1ac | 2012-05-07 17:09:37 +0000 | [diff] [blame] | 100 | '../src/gpu', |
robertphillips | 7b9e8a4 | 2014-12-11 08:20:31 -0800 | [diff] [blame] | 101 | '../src/image/', |
ethannicholas | b3058bd | 2016-07-01 08:22:01 -0700 | [diff] [blame] | 102 | '../src/sksl', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 103 | ], |
| 104 | 'sources': [ |
robertphillips@google.com | e63296e | 2013-06-18 14:43:53 +0000 | [diff] [blame] | 105 | '<@(skgpu_sources)', |
| 106 | '<@(skgpu_native_gl_sources)', |
bsalomon | 7499e69 | 2016-02-22 12:13:19 -0800 | [diff] [blame] | 107 | '<@(skgpu_vk_sources)', |
bsalomon@google.com | 202a51b | 2012-09-04 14:37:12 +0000 | [diff] [blame] | 108 | 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the build). |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 109 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 110 | 'conditions': [ |
egdaniel | 86e31a1 | 2015-03-09 09:40:42 -0700 | [diff] [blame] | 111 | [ 'skia_gpu_extra_dependency_path', { |
| 112 | 'dependencies' : [ |
| 113 | '<(skia_gpu_extra_dependency_path):*', |
egdaniel | 540e488 | 2015-08-14 08:37:50 -0700 | [diff] [blame] | 114 | ], |
| 115 | 'export_dependent_settings': [ |
| 116 | '<(skia_gpu_extra_dependency_path):*', |
| 117 | ], |
egdaniel | 86e31a1 | 2015-03-09 09:40:42 -0700 | [diff] [blame] | 118 | }], |
robertphillips@google.com | 42cc237 | 2013-12-10 15:19:32 +0000 | [diff] [blame] | 119 | [ 'skia_chrome_utils', { |
| 120 | 'sources': [ |
| 121 | '../experimental/ChromeUtils/SkBorder.cpp', |
| 122 | '../experimental/ChromeUtils/SkBorder.h', |
| 123 | ], |
| 124 | 'defines': [ |
| 125 | 'GR_CHROME_UTILS=1', |
| 126 | ], |
| 127 | }], |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 128 | [ 'skia_os == "linux"', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 129 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 130 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 131 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 132 | ], |
derekf | 29dda80 | 2014-10-01 10:52:52 -0700 | [diff] [blame] | 133 | }], |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 134 | [ 'skia_os == "linux" and skia_egl == 1', { |
derekf | 29dda80 | 2014-10-01 10:52:52 -0700 | [diff] [blame] | 135 | 'link_settings': { |
| 136 | 'libraries': [ |
| 137 | '-lEGL', |
| 138 | '-lGLESv2', |
| 139 | ], |
| 140 | }, |
| 141 | }], |
borenet | 43bf511 | 2016-04-29 14:01:34 -0700 | [diff] [blame] | 142 | [ 'skia_os == "linux" and skia_egl == 0', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 143 | 'link_settings': { |
| 144 | 'libraries': [ |
| 145 | '-lGL', |
borenet@google.com | 7158e6a | 2012-11-01 17:43:44 +0000 | [diff] [blame] | 146 | '-lGLU', |
senorblanco@chromium.org | 0d92353 | 2012-11-12 20:55:02 +0000 | [diff] [blame] | 147 | '-lX11', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 148 | ], |
| 149 | }, |
| 150 | }], |
epoger@google.com | 8846cb2 | 2011-07-01 20:20:07 +0000 | [diff] [blame] | 151 | [ 'skia_os == "mac"', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 152 | 'link_settings': { |
| 153 | 'libraries': [ |
| 154 | '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 155 | ], |
| 156 | }, |
| 157 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 158 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 159 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 160 | ], |
bsalomon@google.com | 373a663 | 2011-10-19 20:43:20 +0000 | [diff] [blame] | 161 | }], |
bsalomon@google.com | cca3c8f | 2012-09-28 16:56:28 +0000 | [diff] [blame] | 162 | [ 'skia_os in ["win", "ios"]', { |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 163 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 164 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 165 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 166 | ], |
| 167 | }], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 168 | [ 'skia_os == "android"', { |
| 169 | 'sources!': [ |
tomhudson@google.com | 4072556 | 2012-02-10 21:35:06 +0000 | [diff] [blame] | 170 | '../src/gpu/gl/GrGLDefaultInterface_none.cpp', |
| 171 | '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 172 | ], |
Derek Sollenberger | c7d29c8 | 2014-07-10 08:10:20 -0400 | [diff] [blame] | 173 | 'defines': [ |
| 174 | 'GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE=1', |
| 175 | ], |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 176 | 'link_settings': { |
| 177 | 'libraries': [ |
| 178 | '-lGLESv2', |
| 179 | '-lEGL', |
djsollen@google.com | 5862929 | 2011-11-03 13:08:29 +0000 | [diff] [blame] | 180 | ], |
| 181 | }, |
| 182 | }], |
bsalomon | 7499e69 | 2016-02-22 12:13:19 -0800 | [diff] [blame] | 183 | [ 'skia_vulkan', { |
djsollen | d5fd2ff | 2016-07-06 09:17:35 -0700 | [diff] [blame] | 184 | 'link_settings': { |
| 185 | 'libraries': [ '<(vulkan_lib_name)', ], |
| 186 | }, |
| 187 | 'dependencies': [ |
| 188 | 'shaderc.gyp:shaderc_combined', |
| 189 | ], |
bsalomon | 41dc3d6 | 2016-03-04 13:38:26 -0800 | [diff] [blame] | 190 | 'conditions': [ |
| 191 | [ 'skia_os == "win"', { |
| 192 | 'variables': { |
| 193 | 'vulkan_lib_name': '-lvulkan-1', |
bsalomon | f98bc6d | 2016-03-03 16:38:22 -0800 | [diff] [blame] | 194 | 'vulkan_sdk_path' : '<!(echo %VK_SDK_PATH%)', |
bsalomon | 41dc3d6 | 2016-03-04 13:38:26 -0800 | [diff] [blame] | 195 | }, |
| 196 | 'include_dirs': [ |
| 197 | '<(vulkan_sdk_path)/Include', |
| 198 | ], |
| 199 | 'direct_dependent_settings': { |
| 200 | 'include_dirs': [ |
| 201 | '<(vulkan_sdk_path)/Include', |
| 202 | ], |
| 203 | }, |
| 204 | 'link_settings': { |
bsalomon | a6b439a | 2016-03-10 12:31:20 -0800 | [diff] [blame] | 205 | 'conditions': [ |
| 206 | [ 'skia_arch_type == "x86"', { |
| 207 | 'library_dirs': [ '<(vulkan_sdk_path)/Bin32', ], |
| 208 | }, { |
| 209 | 'library_dirs': [ '<(vulkan_sdk_path)/Bin', ], |
| 210 | }], |
| 211 | ] |
bsalomon | 41dc3d6 | 2016-03-04 13:38:26 -0800 | [diff] [blame] | 212 | }, |
| 213 | }, { |
| 214 | 'variables': { |
| 215 | 'vulkan_lib_name': '-lvulkan', |
| 216 | }, |
| 217 | }], |
egdaniel | 58daedb | 2016-06-17 12:04:05 -0700 | [diff] [blame] | 218 | [ 'skia_os == "linux"', { |
| 219 | 'variables': { |
| 220 | 'vulkan_sdk_path' : '<!(echo $VULKAN_SDK)', |
| 221 | }, |
| 222 | 'include_dirs': [ |
| 223 | '<(vulkan_sdk_path)/include', |
| 224 | ], |
| 225 | 'direct_dependent_settings': { |
| 226 | 'include_dirs': [ |
| 227 | '<(vulkan_sdk_path)/include', |
| 228 | ], |
| 229 | }, |
| 230 | 'link_settings': { |
| 231 | 'library_dirs': [ '<(vulkan_sdk_path)/lib', ], |
| 232 | }, |
| 233 | }], |
djsollen | d5fd2ff | 2016-07-06 09:17:35 -0700 | [diff] [blame] | 234 | [ 'skia_android_framework', { |
| 235 | 'include_dirs': [ |
| 236 | 'frameworks/native/vulkan/include', |
| 237 | '../tools/viewer/sk_app', |
| 238 | '../tools/viewer/sk_app/android', |
| 239 | ], |
| 240 | 'direct_dependent_settings': { |
| 241 | 'include_dirs': [ |
| 242 | 'frameworks/native/vulkan/include', |
| 243 | '../tools/viewer/sk_app', |
| 244 | '../tools/viewer/sk_app/android', |
| 245 | ], |
| 246 | }, |
| 247 | 'dependencies!': [ |
| 248 | 'shaderc.gyp:shaderc_combined', |
| 249 | ], |
| 250 | 'sources': [ |
| 251 | # the gyp -> android.mk generator doesn't seem to like cpp files |
| 252 | # in directories outside of src, bench, or dm. Until this gets fixed |
| 253 | # I just start the path in the src directory. |
| 254 | '<(skia_src_path)/../tools/viewer/sk_app/WindowContext.cpp', |
| 255 | '<(skia_src_path)/../tools/viewer/sk_app/VulkanWindowContext.cpp', |
| 256 | '<(skia_src_path)/../tools/viewer/sk_app/android/VulkanWindowContext_android.cpp' |
| 257 | ], |
| 258 | }], |
bsalomon | 41dc3d6 | 2016-03-04 13:38:26 -0800 | [diff] [blame] | 259 | ], |
bsalomon | 7499e69 | 2016-02-22 12:13:19 -0800 | [diff] [blame] | 260 | }, { |
| 261 | 'sources!': [ |
| 262 | '<@(skgpu_vk_sources)', |
| 263 | ], |
| 264 | }], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 265 | ], |
epoger@google.com | ae85aea | 2011-05-31 13:50:51 +0000 | [diff] [blame] | 266 | }, |
| 267 | ], |
| 268 | } |