blob: 0b2fbae9007ed6f2bfb6d9b1b8f7901cabaa36ae [file] [log] [blame]
benjaminwagner56f6d062016-01-13 10:45:19 -08001################################################################################
2# Skylark macros
3################################################################################
benjaminwagner787ca872015-08-17 12:58:10 -07004
benjaminwagner56f6d062016-01-13 10:45:19 -08005is_bazel = not hasattr(native, "genmpm")
6
7def portable_select(select_dict, bazel_condition, default_condition):
8 """Replaces select() with a Bazel-friendly wrapper.
9
10 Args:
11 select_dict: Dictionary in the same format as select().
12 Returns:
13 If Blaze platform, returns select() using select_dict.
14 If Bazel platform, returns dependencies for condition
15 bazel_condition, or empty list if none specified.
16 """
17 if is_bazel:
18 return select_dict.get(bazel_condition, select_dict[default_condition])
19 else:
20 return select(select_dict)
21
22def skia_select(conditions, results):
23 """Replaces select() for conditions [UNIX, ANDROID, IOS]
24
25 Args:
26 conditions: [CONDITION_UNIX, CONDITION_ANDROID, CONDITION_IOS]
27 results: [RESULT_UNIX, RESULT_ANDROID, RESULT_IOS]
28 Returns:
29 The result matching the platform condition.
30 """
31 if len(conditions) != 3 or len(results) != 3:
32 fail("Must provide exactly 3 conditions and 3 results")
33
34 selector = {}
35 for i in range(3):
36 selector[conditions[i]] = results[i]
37 return portable_select(selector, conditions[2], conditions[0])
38
39def skia_glob(srcs):
40 """Replaces glob() with a version that accepts a struct.
41
42 Args:
43 srcs: struct(include=[], exclude=[])
44 Returns:
45 Equivalent of glob(srcs.include, exclude=srcs.exclude)
46 """
47 if hasattr(srcs, 'include'):
48 if hasattr(srcs, 'exclude'):
49 return native.glob(srcs.include, exclude=srcs.exclude)
50 else:
51 return native.glob(srcs.include)
52 return []
53
54################################################################################
55## BASE_SRCS
56################################################################################
benjaminwagner787ca872015-08-17 12:58:10 -070057
benjaminwagner39e7aa42015-11-18 13:26:10 -080058# All platform-independent SRCS.
benjaminwagner56f6d062016-01-13 10:45:19 -080059BASE_SRCS_ALL = struct(
60 include = [
mtkleind55d13a2015-08-18 08:51:49 -070061 "include/private/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -070062 "src/**/*.h",
63 "src/**/*.cpp",
benjaminwagner787ca872015-08-17 12:58:10 -070064
mtkleind55d13a2015-08-18 08:51:49 -070065 # Third Party
benjaminwagner787ca872015-08-17 12:58:10 -070066 "third_party/etc1/*.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -070067 "third_party/etc1/*.h",
benjaminwagner787ca872015-08-17 12:58:10 -070068 "third_party/ktx/*.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -070069 "third_party/ktx/*.h",
benjaminwagner787ca872015-08-17 12:58:10 -070070 ],
71 exclude = [
benjaminwagner6f6bef82015-10-15 08:09:44 -070072 # Exclude platform-dependent files.
irothd2ccc772016-01-25 11:24:57 -080073 "src/android/*",
iroth76a12252016-01-07 07:11:39 -080074 "src/codec/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -070075 "src/device/xps/*", # Windows-only. Move to ports?
76 "src/doc/*_XPS.cpp", # Windows-only. Move to ports?
benjaminwagner2211a7b2015-12-01 11:12:05 -080077 "src/fonts/SkFontMgr_fontconfig.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -070078 "src/gpu/gl/android/*",
benjaminwagner86ea33e2015-10-26 10:46:25 -070079 "src/gpu/gl/egl/*",
80 "src/gpu/gl/glx/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -070081 "src/gpu/gl/iOS/*",
82 "src/gpu/gl/mac/*",
83 "src/gpu/gl/win/*",
iroth76a12252016-01-07 07:11:39 -080084 "src/images/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -070085 "src/opts/**/*",
86 "src/ports/**/*",
87 "src/utils/android/**/*",
88 "src/utils/mac/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -070089 "src/utils/SkThreadUtils_win.cpp", # Windows-only. Move to ports?
90 "src/utils/win/**/*",
91 "src/views/sdl/*",
92 "src/views/win/*",
93 "src/views/unix/*",
94
95 # Exclude multiple definitions.
96 # TODO(mtklein): Move to opts?
mtkleind55d13a2015-08-18 08:51:49 -070097 "src/doc/SkDocument_PDF_None.cpp", # We use SkDocument_PDF.cpp.
benjaminwagner86ea33e2015-10-26 10:46:25 -070098 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
99 "src/gpu/gl/GrGLDefaultInterface_native.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700100
101 # Exclude files that don't compile with the current DEFINES.
102 "src/gpu/gl/angle/*", # Requires SK_ANGLE define.
103 "src/gpu/gl/command_buffer/*", # unknown type name 'HMODULE'
104 "src/gpu/gl/mesa/*", # Requires SK_MESA define.
105 "src/svg/parser/*", # Missing SkSVG.h.
106
benjaminwagner39e7aa42015-11-18 13:26:10 -0800107 # Conflicting dependencies among Lua versions. See cl/107087297.
108 "src/utils/SkLua*",
109
benjaminwagner6f6bef82015-10-15 08:09:44 -0700110 # Not used.
111 "src/animator/**/*",
112 "src/views/**/*",
113 "src/xml/SkBML_Verbs.h",
114 "src/xml/SkBML_XMLParser.cpp",
115 "src/xml/SkXMLPullParser.cpp",
116 ],
117)
118
119# Platform-dependent SRCS for google3-default platform.
benjaminwagner56f6d062016-01-13 10:45:19 -0800120BASE_SRCS_UNIX = struct(
121 include = [
irothd2ccc772016-01-25 11:24:57 -0800122 "src/android/*",
iroth76a12252016-01-07 07:11:39 -0800123 "src/codec/*",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800124 "src/fonts/SkFontMgr_fontconfig.cpp",
iroth76a12252016-01-07 07:11:39 -0800125 "src/images/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700126 "src/opts/**/*.cpp",
127 "src/opts/**/*.h",
128 "src/ports/**/*.cpp",
129 "src/ports/**/*.h",
130 ],
131 exclude = [
iroth76a12252016-01-07 07:11:39 -0800132 "src/codec/SkJpegCodec.cpp", # libjpeg_turbo version mismatch.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700133 "src/opts/*arm*",
134 "src/opts/*mips*",
135 "src/opts/*NEON*",
136 "src/opts/*neon*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700137 # Included in :opts_ssse3 library.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700138 "src/opts/*SSSE3*",
139 "src/opts/*ssse3*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700140 # Included in :opts_sse4 library.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700141 "src/opts/*SSE4*",
142 "src/opts/*sse4*",
mtkleinf6d8d282015-12-17 10:18:04 -0800143 # Included in :opts_avx or :opts_avx2
144 "src/opts/*avx*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700145 "src/opts/SkBitmapProcState_opts_none.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700146 "src/opts/SkBlitMask_opts_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700147 "src/opts/SkBlitRow_opts_none.cpp",
148 "src/ports/*android*",
149 "src/ports/*chromium*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700150 "src/ports/*mac*",
151 "src/ports/*mozalloc*",
152 "src/ports/*nacl*",
153 "src/ports/*win*",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800154 "src/ports/SkFontConfigInterface_direct_factory.cpp",
155 "src/ports/SkFontMgr_custom_directory_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700156 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
157 "src/ports/SkFontMgr_empty_factory.cpp",
benjaminwagner404816e2015-12-03 05:04:03 -0800158 "src/ports/SkFontMgr_fontconfig.cpp",
benjaminwagner9dbec092015-11-02 05:53:38 -0800159 "src/ports/SkImageDecoder_CG.cpp",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800160 "src/ports/SkFontMgr_fontconfig_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700161 "src/ports/SkImageDecoder_WIC.cpp",
162 "src/ports/SkImageDecoder_empty.cpp",
163 "src/ports/SkImageGenerator_none.cpp",
164 "src/ports/SkTLS_none.cpp",
mtkleind55d13a2015-08-18 08:51:49 -0700165 ],
166)
167
benjaminwagner86ea33e2015-10-26 10:46:25 -0700168# Platform-dependent SRCS for google3-default Android.
benjaminwagner56f6d062016-01-13 10:45:19 -0800169BASE_SRCS_ANDROID = struct(
170 include = [
irothd2ccc772016-01-25 11:24:57 -0800171 "src/android/*",
iroth76a12252016-01-07 07:11:39 -0800172 "src/codec/*",
173 "src/images/*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700174 # TODO(benjaminwagner): Figure out how to compile with EGL.
benjaminwagner86ea33e2015-10-26 10:46:25 -0700175 "src/opts/**/*.cpp",
176 "src/opts/**/*.h",
177 "src/ports/**/*.cpp",
178 "src/ports/**/*.h",
179 ],
180 exclude = [
iroth76a12252016-01-07 07:11:39 -0800181 "src/codec/SkJpegCodec.cpp", # libjpeg_turbo version mismatch.
benjaminwagner86ea33e2015-10-26 10:46:25 -0700182 "src/opts/*mips*",
183 "src/opts/*SSE2*",
184 "src/opts/*SSSE3*",
185 "src/opts/*ssse3*",
186 "src/opts/*SSE4*",
187 "src/opts/*sse4*",
mtkleinf6d8d282015-12-17 10:18:04 -0800188 "src/opts/*avx*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700189 "src/opts/*x86*",
190 "src/opts/SkBitmapProcState_opts_none.cpp",
191 "src/opts/SkBlitMask_opts_none.cpp",
192 "src/opts/SkBlitRow_opts_none.cpp",
193 "src/ports/*chromium*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700194 "src/ports/*fontconfig*",
195 "src/ports/*FontConfig*",
196 "src/ports/*mac*",
197 "src/ports/*mozalloc*",
198 "src/ports/*nacl*",
199 "src/ports/*win*",
200 "src/ports/SkDebug_stdio.cpp",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800201 "src/ports/SkFontConfigInterface_direct_factory.cpp",
202 "src/ports/SkFontConfigInterface_direct_google3_factory.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700203 "src/ports/SkFontMgr_custom_directory_factory.cpp",
204 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
205 "src/ports/SkFontMgr_empty_factory.cpp",
benjaminwagner9dbec092015-11-02 05:53:38 -0800206 "src/ports/SkImageDecoder_CG.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700207 "src/ports/SkImageDecoder_WIC.cpp",
208 "src/ports/SkImageDecoder_empty.cpp",
209 "src/ports/SkImageGenerator_none.cpp",
210 "src/ports/SkTLS_none.cpp",
211 ],
212)
213
iroth8b99ef42015-11-02 11:11:21 -0800214# Platform-dependent SRCS for google3-default iOS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800215BASE_SRCS_IOS = struct(
216 include = [
iroth8b99ef42015-11-02 11:11:21 -0800217 "src/opts/**/*.cpp",
218 "src/opts/**/*.h",
219 "src/ports/**/*.cpp",
220 "src/ports/**/*.h",
221 ],
222 exclude = [
223 "src/opts/*mips*",
224 "src/opts/*NEON*",
225 "src/opts/*neon*",
226 "src/opts/*SSE2*",
227 "src/opts/*SSSE3*",
228 "src/opts/*ssse3*",
229 "src/opts/*SSE4*",
230 "src/opts/*sse4*",
mtkleinf6d8d282015-12-17 10:18:04 -0800231 "src/opts/*avx*",
iroth8b99ef42015-11-02 11:11:21 -0800232 "src/opts/*x86*",
233 "src/opts/SkBitmapProcState_opts_none.cpp",
irothd2ccc772016-01-25 11:24:57 -0800234 "src/opts/SkBlitMask_opts_arm*.cpp",
235 "src/opts/SkBlitRow_opts_arm*.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800236 "src/ports/*android*",
237 "src/ports/*chromium*",
238 "src/ports/*fontconfig*",
239 "src/ports/*FontConfig*",
240 "src/ports/*FreeType*",
241 "src/ports/*mozalloc*",
242 "src/ports/*nacl*",
243 "src/ports/*win*",
244 "src/ports/SkDebug_stdio.cpp",
245 "src/ports/SkFontMgr_custom.cpp",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800246 "src/ports/SkFontConfigInterface_direct_factory.cpp",
247 "src/ports/SkFontConfigInterface_direct_google3_factory.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800248 "src/ports/SkFontMgr_custom_directory_factory.cpp",
249 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
250 "src/ports/SkFontMgr_empty_factory.cpp",
251 "src/ports/SkImageDecoder_CG.cpp",
252 "src/ports/SkImageDecoder_WIC.cpp",
253 "src/ports/SkImageDecoder_empty.cpp",
254 "src/ports/SkImageGenerator_none.cpp",
255 "src/ports/SkTLS_none.cpp",
256 ],
257)
258
benjaminwagner56f6d062016-01-13 10:45:19 -0800259################################################################################
260## SSSE3/SSE4/AVX/AVX2 SRCS
261################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700262
benjaminwagner56f6d062016-01-13 10:45:19 -0800263SSSE3_SRCS = struct(
264 include = [
mtkleind55d13a2015-08-18 08:51:49 -0700265 "src/opts/*SSSE3*.cpp",
266 "src/opts/*ssse3*.cpp",
benjaminwagner89061ed2016-01-25 09:29:08 -0800267 ],
268)
mtkleind55d13a2015-08-18 08:51:49 -0700269
benjaminwagner56f6d062016-01-13 10:45:19 -0800270SSE4_SRCS = struct(
271 include = [
mtkleind55d13a2015-08-18 08:51:49 -0700272 "src/opts/*SSE4*.cpp",
273 "src/opts/*sse4*.cpp",
benjaminwagner89061ed2016-01-25 09:29:08 -0800274 ],
275)
benjaminwagner787ca872015-08-17 12:58:10 -0700276
benjaminwagner56f6d062016-01-13 10:45:19 -0800277AVX_SRCS = struct(
278 include = [
mtkleinf6d8d282015-12-17 10:18:04 -0800279 "src/opts/*_avx.cpp",
benjaminwagner89061ed2016-01-25 09:29:08 -0800280 ],
281)
mtkleinf6d8d282015-12-17 10:18:04 -0800282
benjaminwagner56f6d062016-01-13 10:45:19 -0800283AVX2_SRCS = struct(
284 include = [
mtkleinf6d8d282015-12-17 10:18:04 -0800285 "src/opts/*_avx2.cpp",
benjaminwagner89061ed2016-01-25 09:29:08 -0800286 ],
287)
mtkleinf6d8d282015-12-17 10:18:04 -0800288
benjaminwagner56f6d062016-01-13 10:45:19 -0800289################################################################################
290## BASE_HDRS
291################################################################################
292
293BASE_HDRS = struct(
294 include = [
benjaminwagner787ca872015-08-17 12:58:10 -0700295 "include/**/*.h",
irothd2ccc772016-01-25 11:24:57 -0800296 "src/utils/SkWhitelistChecksums.cpp",
benjaminwagner787ca872015-08-17 12:58:10 -0700297 ],
mtkleind55d13a2015-08-18 08:51:49 -0700298 exclude = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700299 "include/private/**/*",
300
301 # Not used.
302 "include/animator/**/*",
303 "include/views/**/*",
304 "include/xml/SkBML_WXMLParser.h",
305 "include/xml/SkBML_XMLParser.h",
benjaminwagner89061ed2016-01-25 09:29:08 -0800306 ],
307)
benjaminwagner787ca872015-08-17 12:58:10 -0700308
benjaminwagner56f6d062016-01-13 10:45:19 -0800309################################################################################
310## BASE_DEPS
311################################################################################
312
313BASE_DEPS_ALL = []
314
benjaminwagner39e7aa42015-11-18 13:26:10 -0800315BASE_DEPS_UNIX = [
iroth330043c2016-01-12 14:22:24 -0800316 ":opts_ssse3",
benjaminwagner56f6d062016-01-13 10:45:19 -0800317 ":opts_sse4",
318 ":opts_avx",
319 ":opts_avx2",
benjaminwagner39e7aa42015-11-18 13:26:10 -0800320]
321
322BASE_DEPS_ANDROID = []
323
324BASE_DEPS_IOS = []
325
benjaminwagner56f6d062016-01-13 10:45:19 -0800326################################################################################
327## INCLUDES
328################################################################################
benjaminwagner39e7aa42015-11-18 13:26:10 -0800329
benjaminwagner787ca872015-08-17 12:58:10 -0700330# Includes needed by Skia implementation. Not public includes.
331INCLUDES = [
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800332 "include/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700333 "include/c",
robertphillips188d44c2016-02-01 04:54:14 -0800334 "include/client/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700335 "include/codec",
336 "include/config",
337 "include/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700338 "include/effects",
339 "include/gpu",
340 "include/images",
341 "include/pathops",
benjaminwagner787ca872015-08-17 12:58:10 -0700342 "include/pipe",
343 "include/ports",
344 "include/private",
345 "include/utils",
iroth8b99ef42015-11-02 11:11:21 -0800346 "include/utils/mac",
347 "include/utils/win",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700348 "include/svg",
benjaminwagner787ca872015-08-17 12:58:10 -0700349 "include/xml",
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800350 "src/codec",
benjaminwagner787ca872015-08-17 12:58:10 -0700351 "src/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700352 "src/gpu",
353 "src/image",
354 "src/lazy",
355 "src/opts",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800356 "src/ports",
benjaminwagner787ca872015-08-17 12:58:10 -0700357 "src/pdf",
benjaminwagner787ca872015-08-17 12:58:10 -0700358 "src/sfnt",
359 "src/utils",
360 "third_party/etc1",
361 "third_party/ktx",
benjaminwagner56f6d062016-01-13 10:45:19 -0800362]
benjaminwagner787ca872015-08-17 12:58:10 -0700363
benjaminwagner56f6d062016-01-13 10:45:19 -0800364################################################################################
365## DM_SRCS
366################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700367
benjaminwagner56f6d062016-01-13 10:45:19 -0800368DM_SRCS_ALL = struct(
369 include = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700370 "dm/*.cpp",
371 "dm/*.h",
372 "gm/*.c",
373 "gm/*.cpp",
374 "gm/*.h",
375 "tests/*.cpp",
376 "tests/*.h",
377 "tools/CrashHandler.cpp",
378 "tools/CrashHandler.h",
kjlubick1de415f2016-02-10 11:25:07 -0800379 "tools/LazyDecodeBitmap.cpp",
380 "tools/LazyDecodeBitmap.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700381 "tools/ProcStats.cpp",
382 "tools/ProcStats.h",
383 "tools/Resources.cpp",
384 "tools/Resources.h",
benjaminwagner32885142015-10-24 07:55:31 -0700385 "tools/SkBitmapRegionCanvas.cpp",
386 "tools/SkBitmapRegionCanvas.h",
387 "tools/SkBitmapRegionCodec.cpp",
388 "tools/SkBitmapRegionCodec.h",
msarett5cb48852015-11-06 08:56:32 -0800389 "tools/SkBitmapRegionDecoder.cpp",
390 "tools/SkBitmapRegionDecoder.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700391 "tools/SkBitmapRegionSampler.cpp",
392 "tools/SkBitmapRegionSampler.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700393 "tools/flags/*.cpp",
394 "tools/flags/*.h",
mtkleine1fc4522016-02-09 12:32:52 -0800395 "tools/random_parse_path.cpp",
396 "tools/random_parse_path.h",
benjaminwagner32885142015-10-24 07:55:31 -0700397 "tools/sk_tool_utils.cpp",
398 "tools/sk_tool_utils.h",
399 "tools/sk_tool_utils_font.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700400 "tools/timer/*.cpp",
401 "tools/timer/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700402 ],
403 exclude = [
benjaminwagner86ea33e2015-10-26 10:46:25 -0700404 "dm/DMSrcSinkAndroid.cpp", # Android-only.
405 "tests/FontMgrAndroidParserTest.cpp", # Android-only.
406 "tests/PathOpsSkpClipTest.cpp", # Alternate main.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700407 "tests/skia_test.cpp", # Old main.
408 "tests/SkpSkGrTest.cpp", # Alternate main.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700409 "tools/timer/SysTimer_mach.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700410 "tools/timer/SysTimer_windows.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700411 ],
412)
413
benjaminwagner56f6d062016-01-13 10:45:19 -0800414DM_SRCS_UNIX = struct()
benjaminwagner86ea33e2015-10-26 10:46:25 -0700415
benjaminwagner56f6d062016-01-13 10:45:19 -0800416DM_SRCS_ANDROID = struct(
417 include = [
benjaminwagner86ea33e2015-10-26 10:46:25 -0700418 # Depends on Android HWUI library that is not available in google3.
419 #"dm/DMSrcSinkAndroid.cpp",
420 "tests/FontMgrAndroidParserTest.cpp",
421 ],
422)
423
benjaminwagner56f6d062016-01-13 10:45:19 -0800424DM_SRCS_IOS = struct()
425
426################################################################################
427## DM_INCLUDES
428################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700429
benjaminwagner6f6bef82015-10-15 08:09:44 -0700430DM_INCLUDES = [
benjaminwagnerb1fe8f62016-02-01 09:05:08 -0800431 "dm",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700432 "gm",
433 "src/codec",
434 "src/effects",
435 "src/fonts",
436 "src/pathops",
437 "src/pipe/utils",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700438 "src/ports",
ethannicholas3cb95422016-02-09 12:44:06 -0800439 "tools/debugger",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700440 "tests",
441 "tools",
442 "tools/flags",
443 "tools/timer",
444]
445
benjaminwagner56f6d062016-01-13 10:45:19 -0800446################################################################################
447## DM_ARGS
448################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700449
benjaminwagner56f6d062016-01-13 10:45:19 -0800450def DM_ARGS(base_dir):
451 return [
452 "--nogpu",
453 "--verbose",
454 # TODO(mtklein): maybe investigate why these fail?
455 "--match ~FontMgr ~Scalar ~Canvas ~Codec_stripes ~Codec_Dimensions ~Codec ~Stream ~skps ~RecordDraw_TextBounds",
456 "--resourcePath %s/resources" % base_dir,
457 "--images %s/resources" % base_dir,
458 ]
459
460################################################################################
461## COPTS
462################################################################################
iroth8b99ef42015-11-02 11:11:21 -0800463
benjaminwagner86ea33e2015-10-26 10:46:25 -0700464COPTS_UNIX = [
benjaminwagner787ca872015-08-17 12:58:10 -0700465 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
benjaminwagner7d974f52015-10-19 13:55:55 -0700466 "-Wno-deprecated-declarations", # Internal use of deprecated methods. :(
benjaminwagner787ca872015-08-17 12:58:10 -0700467]
468
benjaminwagner56f6d062016-01-13 10:45:19 -0800469COPTS_ANDROID = ["-mfpu=neon"]
470
471COPTS_IOS = []
472
473COPTS_ALL = []
474
475################################################################################
476## DEFINES
477################################################################################
478
479DEFINES_UNIX = [
480 "SK_BUILD_FOR_UNIX",
481 "SK_SAMPLES_FOR_X",
482 "SK_SFNTLY_SUBSETTER",
benjaminwagner186e0b92016-02-11 16:00:24 -0800483 "SK_CODEC_DECODES_RAW",
benjaminwagner56f6d062016-01-13 10:45:19 -0800484]
benjaminwagner86ea33e2015-10-26 10:46:25 -0700485
486DEFINES_ANDROID = [
487 "SK_BUILD_FOR_ANDROID",
488 # TODO(benjaminwagner): Try to get png library updated?
489 "SK_PNG_NO_INDEX_SUPPORTED",
benjaminwagner186e0b92016-02-11 16:00:24 -0800490 "SK_CODEC_DECODES_RAW",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700491]
492
iroth8b99ef42015-11-02 11:11:21 -0800493DEFINES_IOS = [
494 "SK_BUILD_FOR_IOS",
495 "SK_IGNORE_ETC1_SUPPORT",
irothd2ccc772016-01-25 11:24:57 -0800496 "SKNX_NO_SIMD",
iroth8b99ef42015-11-02 11:11:21 -0800497]
498
benjaminwagner86ea33e2015-10-26 10:46:25 -0700499DEFINES_ALL = [
benjaminwagner787ca872015-08-17 12:58:10 -0700500 # Chrome DEFINES.
501 "SK_USE_FLOATBITS",
502 "SK_USE_FREETYPE_EMBOLDEN",
503 # Turn on a few Google3-specific build fixes.
504 "GOOGLE3",
benjaminwagner787ca872015-08-17 12:58:10 -0700505]
506
benjaminwagner56f6d062016-01-13 10:45:19 -0800507################################################################################
508## LINKOPTS
509################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700510
benjaminwagner56f6d062016-01-13 10:45:19 -0800511LINKOPTS_UNIX = []
benjaminwagner6f6bef82015-10-15 08:09:44 -0700512
benjaminwagner56f6d062016-01-13 10:45:19 -0800513LINKOPTS_ANDROID = [
514 "-lEGL",
515]
benjaminwagner6f6bef82015-10-15 08:09:44 -0700516
benjaminwagner56f6d062016-01-13 10:45:19 -0800517LINKOPTS_IOS = []
benjaminwagner6f6bef82015-10-15 08:09:44 -0700518
benjaminwagner56f6d062016-01-13 10:45:19 -0800519LINKOPTS_ALL = [
520 "-ldl",
521]