blob: 7bb61f09b6f5509f2934ac1b8632d23c5ee1b9b4 [file] [log] [blame]
commit-bot@chromium.org9d0ecf42014-02-27 20:40:31 +00001# GYP for building gpu
epoger@google.comae85aea2011-05-31 13:50:51 +00002{
bsalomon@google.come2953132011-10-13 13:33:08 +00003 'target_defaults': {
4 'conditions': [
5 ['skia_os != "win"', {
6 'sources/': [ ['exclude', '_win.(h|cpp)$'],
7 ],
8 }],
9 ['skia_os != "mac"', {
bsalomon@google.com2b64f842012-10-02 15:25:12 +000010 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'],
bsalomon@google.come2953132011-10-13 13:33:08 +000011 ],
12 }],
borenet@google.com05d550e2013-06-11 15:52:19 +000013 ['skia_os != "linux" and skia_os != "chromeos"', {
bsalomon@google.come2953132011-10-13 13:33:08 +000014 'sources/': [ ['exclude', '_unix.(h|cpp)$'],
15 ],
16 }],
17 ['skia_os != "ios"', {
bsalomon@google.com2b64f842012-10-02 15:25:12 +000018 'sources/': [ ['exclude', '_iOS.(h|cpp|m|mm)$'],
bsalomon@google.come2953132011-10-13 13:33:08 +000019 ],
20 }],
21 ['skia_os != "android"', {
22 'sources/': [ ['exclude', '_android.(h|cpp)$'],
23 ],
24 }],
borenet@google.com7158e6a2012-11-01 17:43:44 +000025 ['skia_os != "nacl"', {
26 'sources/': [ ['exclude', '_nacl.(h|cpp)$'],
27 ],
28 }],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000029 # nullify the targets in this gyp file if skia_gpu is 0
30 [ 'skia_gpu == 0', {
31 'sources/': [
32 ['exclude', '.*'],
33 ],
34 'defines/': [
35 ['exclude', '.*'],
36 ],
37 'include_dirs/': [
38 ['exclude', '.*'],
39 ],
40 'link_settings': {
41 'libraries/': [
42 ['exclude', '.*'],
43 ],
44 },
45 'direct_dependent_settings': {
46 'defines/': [
47 ['exclude', '.*'],
48 ],
49 'include_dirs/': [
50 ['exclude', '.*'],
51 ],
52 },
53 }],
robertphillips@google.com4e5559a2013-10-30 17:04:16 +000054 [ 'skia_resource_cache_mb_limit != 0', {
djsollen@google.com42041e62012-10-29 19:24:45 +000055 'defines': [
robertphillips@google.com4e5559a2013-10-30 17:04:16 +000056 'GR_DEFAULT_RESOURCE_CACHE_MB_LIMIT=<(skia_resource_cache_mb_limit)',
57 ],
58 }],
59 [ 'skia_resource_cache_count_limit != 0', {
60 'defines': [
61 'GR_DEFAULT_RESOURCE_CACHE_COUNT_LIMIT=<(skia_resource_cache_count_limit)',
djsollen@google.com42041e62012-10-29 19:24:45 +000062 ],
63 }],
bsalomon@google.come2953132011-10-13 13:33:08 +000064 ],
65 'direct_dependent_settings': {
66 'conditions': [
bsalomon@google.come2953132011-10-13 13:33:08 +000067 [ 'skia_os == "win"', {
68 'defines': [
bsalomon@google.come2953132011-10-13 13:33:08 +000069 'GR_GL_FUNCTION_TYPE=__stdcall',
70 ],
71 }],
72 ],
73 'include_dirs': [
74 '../include/gpu',
75 ],
76 },
77 },
epoger@google.comae85aea2011-05-31 13:50:51 +000078 'targets': [
79 {
robertphillips@google.come63296e2013-06-18 14:43:53 +000080 'target_name': 'skgpu',
81 'product_name': 'skia_skgpu',
epoger@google.comae85aea2011-05-31 13:50:51 +000082 'type': 'static_library',
borenet@google.comefb1d772012-10-10 19:45:51 +000083 'standalone_static_library': 1,
bungeman@google.comb8f36552013-07-22 14:39:45 +000084 'dependencies': [
bungeman@google.comb8f36552013-07-22 14:39:45 +000085 'core.gyp:*',
86 'utils.gyp:*',
krajcevski9c0e6292014-06-02 07:38:14 -070087 'etc1.gyp:libetc1',
krajcevski99ffe242014-06-03 13:04:35 -070088 'ktx.gyp:libSkKTX',
bungeman@google.comb8f36552013-07-22 14:39:45 +000089 ],
bsalomon@google.com20806352012-08-23 12:55:01 +000090 'includes': [
91 'gpu.gypi',
92 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000093 'include_dirs': [
bungeman@google.com899f1d82013-07-20 00:24:35 +000094 '../include/gpu',
bungeman@google.comb8f36552013-07-22 14:39:45 +000095 '../src/core',
bsalomon@google.com9c1f1ac2012-05-07 17:09:37 +000096 '../src/gpu',
epoger@google.comae85aea2011-05-31 13:50:51 +000097 ],
98 'sources': [
robertphillips@google.come63296e2013-06-18 14:43:53 +000099 '<@(skgpu_sources)',
100 '<@(skgpu_native_gl_sources)',
101 '<@(skgpu_angle_gl_sources)',
102 '<@(skgpu_mesa_gl_sources)',
103 '<@(skgpu_debug_gl_sources)',
104 '<@(skgpu_null_gl_sources)',
bsalomon@google.com202a51b2012-09-04 14:37:12 +0000105 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
epoger@google.comae85aea2011-05-31 13:50:51 +0000106 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000107 'conditions': [
sugoi@google.come3453cb2013-01-07 14:26:40 +0000108 [ 'skia_stroke_path_rendering', {
109 'sources': [
110 '../experimental/StrokePathRenderer/GrStrokePathRenderer.h',
111 '../experimental/StrokePathRenderer/GrStrokePathRenderer.cpp',
112 ],
113 'defines': [
114 'GR_STROKE_PATH_RENDERING=1',
115 ],
116 }],
jvanverth@google.com74dda902013-01-09 21:04:52 +0000117 [ 'skia_android_path_rendering', {
118 'sources': [
119 '../experimental/AndroidPathRenderer/GrAndroidPathRenderer.cpp',
120 '../experimental/AndroidPathRenderer/GrAndroidPathRenderer.h',
121 '../experimental/AndroidPathRenderer/AndroidPathRenderer.cpp',
122 '../experimental/AndroidPathRenderer/AndroidPathRenderer.h',
123 '../experimental/AndroidPathRenderer/Vertex.h',
124 ],
125 'defines': [
126 'GR_ANDROID_PATH_RENDERING=1',
127 ],
128 }],
robertphillips@google.com42cc2372013-12-10 15:19:32 +0000129 [ 'skia_chrome_utils', {
130 'sources': [
131 '../experimental/ChromeUtils/SkBorder.cpp',
132 '../experimental/ChromeUtils/SkBorder.h',
133 ],
134 'defines': [
135 'GR_CHROME_UTILS=1',
136 ],
137 }],
borenet@google.com05d550e2013-06-11 15:52:19 +0000138 [ 'skia_os == "linux" or skia_os == "chromeos"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000139 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000140 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
141 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000142 ],
143 'link_settings': {
144 'libraries': [
145 '-lGL',
borenet@google.com7158e6a2012-11-01 17:43:44 +0000146 '-lGLU',
senorblanco@chromium.org0d923532012-11-12 20:55:02 +0000147 '-lX11',
epoger@google.comae85aea2011-05-31 13:50:51 +0000148 ],
149 },
150 }],
borenet@google.com7158e6a2012-11-01 17:43:44 +0000151 [ 'skia_os == "nacl"', {
152 'link_settings': {
153 'libraries': [
154 '-lppapi_gles2',
155 ],
156 },
157 }],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000158 [ 'skia_mesa and skia_os == "linux"', {
159 'link_settings': {
160 'libraries': [
161 '-lOSMesa',
162 ],
163 },
164 }],
epoger@google.com8846cb22011-07-01 20:20:07 +0000165 [ 'skia_os == "mac"', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000166 'link_settings': {
167 'libraries': [
168 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
169 ],
170 },
171 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000172 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
173 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000174 ],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000175 }],
robertphillips@google.come63296e2013-06-18 14:43:53 +0000176 [ 'not skia_mesa', {
177 'sources!': [
178 '../src/gpu/gl/mesa/SkMesaGLContext.cpp',
179 '../src/gpu/gl/mesa/GrGLCreateMesaInterface.cpp',
180 ],
181 }],
bsalomon@google.com373a6632011-10-19 20:43:20 +0000182 [ 'skia_mesa and skia_os == "mac"', {
183 'link_settings': {
184 'libraries': [
bsalomon@google.com71cf3ae2013-02-04 22:17:13 +0000185 '/opt/X11/lib/libOSMesa.dylib',
bsalomon@google.com373a6632011-10-19 20:43:20 +0000186 ],
187 },
188 'include_dirs': [
bsalomon@google.com71cf3ae2013-02-04 22:17:13 +0000189 '/opt/X11/include/',
bsalomon@google.com373a6632011-10-19 20:43:20 +0000190 ],
191 }],
bsalomon@google.comcca3c8f2012-09-28 16:56:28 +0000192 [ 'skia_os in ["win", "ios"]', {
epoger@google.comae85aea2011-05-31 13:50:51 +0000193 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000194 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
195 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
epoger@google.comae85aea2011-05-31 13:50:51 +0000196 ],
197 }],
commit-bot@chromium.org9d0ecf42014-02-27 20:40:31 +0000198 [ 'skia_angle', {
199 'dependencies': [
200 'angle.gyp:*',
201 ],
202 'export_dependent_settings': [
203 'angle.gyp:*',
204 ],
205 }, { # not skia_angle
robertphillips@google.com021bce92012-04-02 20:42:26 +0000206 'sources!': [
robertphillips@google.come63296e2013-06-18 14:43:53 +0000207 '<@(skgpu_angle_gl_sources)',
djsollen@google.com403b90e2013-05-03 14:00:34 +0000208 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +0000209 }],
djsollen@google.com58629292011-11-03 13:08:29 +0000210 [ 'skia_os == "android"', {
211 'sources!': [
tomhudson@google.com40725562012-02-10 21:35:06 +0000212 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
213 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
djsollen@google.com58629292011-11-03 13:08:29 +0000214 ],
Derek Sollenbergerc7d29c82014-07-10 08:10:20 -0400215 'defines': [
216 'GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE=1',
217 ],
djsollen@google.com58629292011-11-03 13:08:29 +0000218 'link_settings': {
219 'libraries': [
220 '-lGLESv2',
221 '-lEGL',
djsollen@google.com58629292011-11-03 13:08:29 +0000222 ],
223 },
224 }],
epoger@google.comae85aea2011-05-31 13:50:51 +0000225 ],
epoger@google.comae85aea2011-05-31 13:50:51 +0000226 },
227 ],
228}