blob: 1e4992b209e0d9c44b4cbecd6d744ec8122c011e [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):
Ben Wagnerb303a422018-07-31 10:31:06 -04008 """Replaces select() with a Bazel-friendly wrapper.
benjaminwagner56f6d062016-01-13 10:45:19 -08009
Ben Wagnerb303a422018-07-31 10:31:06 -040010 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)
benjaminwagner56f6d062016-01-13 10:45:19 -080021
22def skia_select(conditions, results):
Ben Wagnerb303a422018-07-31 10:31:06 -040023 """Replaces select() for conditions [UNIX, ANDROID, IOS]
benjaminwagner56f6d062016-01-13 10:45:19 -080024
Ben Wagnerb303a422018-07-31 10:31:06 -040025 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")
benjaminwagner56f6d062016-01-13 10:45:19 -080033
Ben Wagnerb303a422018-07-31 10:31:06 -040034 selector = {}
35 for i in range(3):
36 selector[conditions[i]] = results[i]
37 return portable_select(selector, conditions[2], conditions[0])
benjaminwagner56f6d062016-01-13 10:45:19 -080038
39def skia_glob(srcs):
Ben Wagnerb303a422018-07-31 10:31:06 -040040 """Replaces glob() with a version that accepts a struct.
benjaminwagner56f6d062016-01-13 10:45:19 -080041
Ben Wagnerb303a422018-07-31 10:31:06 -040042 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 []
benjaminwagner56f6d062016-01-13 10:45:19 -080053
54################################################################################
Ben Wagner9eca72b2017-10-17 10:57:34 -040055## skia_{all,public}_hdrs()
56################################################################################
57def skia_all_hdrs():
Ben Wagnerb303a422018-07-31 10:31:06 -040058 return native.glob([
59 "src/**/*.h",
60 "include/**/*.h",
61 "third_party/**/*.h",
62 ])
Ben Wagner9eca72b2017-10-17 10:57:34 -040063
64def skia_public_hdrs():
Ben Wagnerb303a422018-07-31 10:31:06 -040065 return native.glob(
66 ["include/**/*.h"],
67 exclude = [
68 "include/private/**/*",
Ben Wagnerb303a422018-07-31 10:31:06 -040069 ],
70 )
Ben Wagner9eca72b2017-10-17 10:57:34 -040071
72################################################################################
73## skia_opts_srcs()
74################################################################################
75# Intel
76SKIA_OPTS_SSE2 = "SSE2"
77
78SKIA_OPTS_SSSE3 = "SSSE3"
79
80SKIA_OPTS_SSE41 = "SSE41"
81
82SKIA_OPTS_SSE42 = "SSE42"
83
84SKIA_OPTS_AVX = "AVX"
85
Mike Klein33d077d2018-02-27 13:43:53 -050086SKIA_OPTS_HSW = "HSW"
87
Ben Wagner9eca72b2017-10-17 10:57:34 -040088# Arm
89SKIA_OPTS_NEON = "NEON"
90
91SKIA_OPTS_CRC32 = "CRC32" # arm64
92
93def opts_srcs(opts):
Ben Wagnerb303a422018-07-31 10:31:06 -040094 if opts == SKIA_OPTS_SSE2:
95 return native.glob([
96 "src/opts/*_SSE2.cpp",
97 "src/opts/*_sse2.cpp", # No matches currently.
98 ])
99 elif opts == SKIA_OPTS_SSSE3:
100 return native.glob([
101 "src/opts/*_SSSE3.cpp",
102 "src/opts/*_ssse3.cpp",
103 ])
104 elif opts == SKIA_OPTS_SSE41:
105 return native.glob([
106 "src/opts/*_sse41.cpp",
107 ])
108 elif opts == SKIA_OPTS_SSE42:
109 return native.glob([
110 "src/opts/*_sse42.cpp",
111 ])
112 elif opts == SKIA_OPTS_AVX:
113 return native.glob([
114 "src/opts/*_avx.cpp",
115 ])
116 elif opts == SKIA_OPTS_HSW:
117 return native.glob([
118 "src/opts/*_hsw.cpp",
119 ])
120 elif opts == SKIA_OPTS_NEON:
121 return native.glob([
122 "src/opts/*_neon.cpp",
123 ])
124 elif opts == SKIA_OPTS_CRC32:
125 return native.glob([
126 "src/opts/*_crc32.cpp",
127 ])
128 else:
129 fail("skia_opts_srcs parameter 'opts' must be one of SKIA_OPTS_*.")
Ben Wagner9eca72b2017-10-17 10:57:34 -0400130
131def opts_cflags(opts):
Ben Wagnerb303a422018-07-31 10:31:06 -0400132 if opts == SKIA_OPTS_SSE2:
133 return ["-msse2"]
134 elif opts == SKIA_OPTS_SSSE3:
135 return ["-mssse3"]
136 elif opts == SKIA_OPTS_SSE41:
137 return ["-msse4.1"]
138 elif opts == SKIA_OPTS_SSE42:
139 return ["-msse4.2"]
140 elif opts == SKIA_OPTS_AVX:
141 return ["-mavx"]
142 elif opts == SKIA_OPTS_HSW:
143 return ["-mavx2", "-mf16c", "-mfma"]
144 elif opts == SKIA_OPTS_NEON:
145 return ["-mfpu=neon"]
146 elif opts == SKIA_OPTS_CRC32:
147 # NDK r11's Clang (3.8) doesn't pass along this -march setting correctly to an external
148 # assembler, so we do it manually with -Wa. This is just a bug, fixed in later Clangs.
149 return ["-march=armv8-a+crc", "-Wa,-march=armv8-a+crc"]
150 else:
151 return []
Ben Wagner9eca72b2017-10-17 10:57:34 -0400152
153SKIA_CPU_ARM = "ARM"
154
155SKIA_CPU_ARM64 = "ARM64"
156
157SKIA_CPU_X86 = "X86"
158
159SKIA_CPU_OTHER = "OTHER"
160
161def opts_rest_srcs(cpu):
Ben Wagnerb303a422018-07-31 10:31:06 -0400162 srcs = []
163 if cpu == SKIA_CPU_ARM or cpu == SKIA_CPU_ARM64:
164 srcs += native.glob([
165 "src/opts/*_arm.cpp",
166 "src/opts/SkBitmapProcState_opts_none.cpp",
167 ])
168 if cpu == SKIA_CPU_ARM64:
169 # NEON doesn't need special flags to compile on ARM64.
170 srcs += native.glob([
171 "src/opts/*_neon.cpp",
172 ])
173 elif cpu == SKIA_CPU_X86:
174 srcs += native.glob([
175 "src/opts/*_x86.cpp",
176 ])
177 elif cpu == SKIA_CPU_OTHER:
178 srcs += native.glob([
179 "src/opts/*_none.cpp",
180 ])
181 else:
182 fail("opts_rest_srcs parameter 'cpu' must be one of " +
183 "SKIA_CPU_{ARM,ARM64,X86,OTHER}.")
184 return srcs
Ben Wagner9eca72b2017-10-17 10:57:34 -0400185
186def skia_opts_deps(cpu):
Ben Wagnerb303a422018-07-31 10:31:06 -0400187 res = [":opts_rest"]
Ben Wagner9eca72b2017-10-17 10:57:34 -0400188
Ben Wagnerb303a422018-07-31 10:31:06 -0400189 if cpu == SKIA_CPU_ARM:
190 res += [":opts_neon"]
Ben Wagner9eca72b2017-10-17 10:57:34 -0400191
Ben Wagnerb303a422018-07-31 10:31:06 -0400192 if cpu == SKIA_CPU_ARM64:
193 res += [":opts_crc32"]
Mike Kleinc29bb572017-10-24 11:40:41 -0400194
Ben Wagnerb303a422018-07-31 10:31:06 -0400195 if cpu == SKIA_CPU_X86:
196 res += [
197 ":opts_sse2",
198 ":opts_ssse3",
199 ":opts_sse41",
200 ":opts_sse42",
201 ":opts_avx",
202 ":opts_hsw",
203 ]
Ben Wagner9eca72b2017-10-17 10:57:34 -0400204
Ben Wagnerb303a422018-07-31 10:31:06 -0400205 return res
Ben Wagner9eca72b2017-10-17 10:57:34 -0400206
207################################################################################
benjaminwagner56f6d062016-01-13 10:45:19 -0800208## BASE_SRCS
209################################################################################
benjaminwagner787ca872015-08-17 12:58:10 -0700210
benjaminwagner39e7aa42015-11-18 13:26:10 -0800211# All platform-independent SRCS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800212BASE_SRCS_ALL = struct(
213 include = [
Ben Wagnerdea74282017-03-16 19:15:09 -0400214 "include/private/**/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700215 "src/**/*.h",
216 "src/**/*.cpp",
Ben Wagnerdea74282017-03-16 19:15:09 -0400217 "src/**/*.inc",
Mike Klein0a64e322017-03-29 17:32:50 -0400218 "src/jumper/SkJumper_generated.S",
benjaminwagner787ca872015-08-17 12:58:10 -0700219
mtkleind55d13a2015-08-18 08:51:49 -0700220 # Third Party
Ben Wagnerd0a3b062016-10-24 14:11:12 -0400221 "third_party/gif/*.cpp",
222 "third_party/gif/*.h",
benjaminwagner787ca872015-08-17 12:58:10 -0700223 ],
Ben Wagnerdea74282017-03-16 19:15:09 -0400224 exclude = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700225 # Exclude platform-dependent files.
iroth76a12252016-01-07 07:11:39 -0800226 "src/codec/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700227 "src/device/xps/*", # Windows-only. Move to ports?
228 "src/doc/*_XPS.cpp", # Windows-only. Move to ports?
229 "src/gpu/gl/android/*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700230 "src/gpu/gl/egl/*",
benjaminwagneraf3b35e2016-03-28 13:27:28 -0700231 "src/gpu/gl/glfw/*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700232 "src/gpu/gl/glx/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700233 "src/gpu/gl/iOS/*",
234 "src/gpu/gl/mac/*",
235 "src/gpu/gl/win/*",
236 "src/opts/**/*",
237 "src/ports/**/*",
238 "src/utils/android/**/*",
239 "src/utils/mac/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700240 "src/utils/win/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700241
242 # Exclude multiple definitions.
Kevin Lubick8014c482018-10-18 11:05:21 -0400243 "src/core/SkPicture_none.cpp",
Kevin Lubickc9210672018-10-15 11:36:55 -0400244 "src/gpu/GrPathRendering_none.cpp",
Kevin Lubick93faa672018-10-10 15:54:53 -0400245 "src/gpu/ccpr/GrCoverageCountingPathRenderer_none.cpp",
Kevin Lubickc9210672018-10-15 11:36:55 -0400246 "src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
247 "src/pdf/SkDocument_PDF_None.cpp", # We use src/pdf/SkPDFDocument.cpp.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700248
Ben Wagner4ccf49c2018-03-26 15:46:40 -0400249 # Exclude files that don't compile everywhere.
250 "src/svg/**/*", # Depends on xml, SkJpegCodec, and SkPngCodec.
251 "src/xml/**/*", # Avoid dragging in expat when not needed.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700252
benjaminwagner39e7aa42015-11-18 13:26:10 -0800253 # Conflicting dependencies among Lua versions. See cl/107087297.
254 "src/utils/SkLua*",
255
egdaniel32119f12016-02-22 10:07:54 -0800256 # Currently exclude all vulkan specific files
257 "src/gpu/vk/*",
benjaminwagnerc8962512016-09-30 12:06:27 -0700258
259 # Defines main.
260 "src/sksl/SkSLMain.cpp",
Ethan Nicholas8d7f4ae2017-09-07 11:07:42 -0400261
262 # Only used to regenerate the lexer
263 "src/sksl/lex/*",
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500264
265 # Atlas text
266 "src/atlastext/*",
Mike Klein83ee4632018-03-27 13:22:50 -0400267
Mike Kleinb056e7f2018-06-20 09:44:59 -0400268 # Compute backend not yet even hooked into Skia.
Ben Wagnerb303a422018-07-31 10:31:06 -0400269 "src/compute/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700270 ],
271)
272
Ben Wagner9eca72b2017-10-17 10:57:34 -0400273def codec_srcs(limited):
Ben Wagnerb303a422018-07-31 10:31:06 -0400274 """Sources for the codecs. Excludes Ico, Webp, Png, and Raw if limited."""
275 exclude = []
276 if limited:
277 exclude += [
278 "src/codec/*Ico*.cpp",
279 "src/codec/*Webp*.cpp",
280 "src/codec/*Png*",
281 "src/codec/*Raw*.cpp",
282 ]
283 return native.glob(["src/codec/*.cpp"], exclude = exclude)
Ben Wagner9eca72b2017-10-17 10:57:34 -0400284
benjaminwagner6f6bef82015-10-15 08:09:44 -0700285# Platform-dependent SRCS for google3-default platform.
benjaminwagner56f6d062016-01-13 10:45:19 -0800286BASE_SRCS_UNIX = struct(
287 include = [
Brian Salomonb3ce76e2017-12-11 15:21:39 -0500288 "src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700289 "src/ports/**/*.cpp",
290 "src/ports/**/*.h",
291 ],
292 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800293 "src/ports/*CG*",
msarettfc0b6d12016-03-17 13:50:17 -0700294 "src/ports/*WIC*",
mtklein3f193a92016-03-10 08:52:05 -0800295 "src/ports/*android*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700296 "src/ports/*chromium*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700297 "src/ports/*mac*",
298 "src/ports/*mozalloc*",
299 "src/ports/*nacl*",
300 "src/ports/*win*",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800301 "src/ports/SkFontMgr_custom_directory_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700302 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700303 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700304 "src/ports/SkFontMgr_empty_factory.cpp",
benjaminwagner404816e2015-12-03 05:04:03 -0800305 "src/ports/SkFontMgr_fontconfig.cpp",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800306 "src/ports/SkFontMgr_fontconfig_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500307 "src/ports/SkGlobalInitialization_none.cpp",
Mike Klein53418da2018-06-20 09:34:05 -0400308 "src/ports/SkGlobalInitialization_none_imagefilters.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700309 "src/ports/SkImageGenerator_none.cpp",
310 "src/ports/SkTLS_none.cpp",
mtkleind55d13a2015-08-18 08:51:49 -0700311 ],
312)
313
benjaminwagner86ea33e2015-10-26 10:46:25 -0700314# Platform-dependent SRCS for google3-default Android.
benjaminwagner56f6d062016-01-13 10:45:19 -0800315BASE_SRCS_ANDROID = struct(
316 include = [
Ben Wagner773151f2018-08-17 09:28:53 -0400317 "src/gpu/gl/android/*.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700318 "src/ports/**/*.cpp",
319 "src/ports/**/*.h",
320 ],
321 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800322 "src/ports/*CG*",
mtklein3f193a92016-03-10 08:52:05 -0800323 "src/ports/*FontConfig*",
msarettfc0b6d12016-03-17 13:50:17 -0700324 "src/ports/*WIC*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700325 "src/ports/*chromium*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700326 "src/ports/*fontconfig*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700327 "src/ports/*mac*",
328 "src/ports/*mozalloc*",
329 "src/ports/*nacl*",
330 "src/ports/*win*",
331 "src/ports/SkDebug_stdio.cpp",
332 "src/ports/SkFontMgr_custom_directory_factory.cpp",
333 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700334 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700335 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500336 "src/ports/SkGlobalInitialization_none.cpp",
Mike Klein53418da2018-06-20 09:34:05 -0400337 "src/ports/SkGlobalInitialization_none_imagefilters.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700338 "src/ports/SkImageGenerator_none.cpp",
339 "src/ports/SkTLS_none.cpp",
340 ],
341)
342
iroth8b99ef42015-11-02 11:11:21 -0800343# Platform-dependent SRCS for google3-default iOS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800344BASE_SRCS_IOS = struct(
345 include = [
Brian Salomon3d6801e2017-12-11 10:06:31 -0500346 "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800347 "src/ports/**/*.cpp",
348 "src/ports/**/*.h",
irothab669de2016-02-16 19:17:01 -0800349 "src/utils/mac/*.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800350 ],
351 exclude = [
mtklein3f193a92016-03-10 08:52:05 -0800352 "src/ports/*FontConfig*",
353 "src/ports/*FreeType*",
msarettfc0b6d12016-03-17 13:50:17 -0700354 "src/ports/*WIC*",
iroth8b99ef42015-11-02 11:11:21 -0800355 "src/ports/*android*",
356 "src/ports/*chromium*",
357 "src/ports/*fontconfig*",
iroth8b99ef42015-11-02 11:11:21 -0800358 "src/ports/*mozalloc*",
359 "src/ports/*nacl*",
360 "src/ports/*win*",
iroth8b99ef42015-11-02 11:11:21 -0800361 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500362 "src/ports/SkFontMgr_custom_directory.cpp",
363 "src/ports/SkFontMgr_custom_embedded.cpp",
364 "src/ports/SkFontMgr_custom_empty.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800365 "src/ports/SkFontMgr_custom_directory_factory.cpp",
366 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700367 "src/ports/SkFontMgr_custom_empty_factory.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800368 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500369 "src/ports/SkGlobalInitialization_none.cpp",
Mike Klein53418da2018-06-20 09:34:05 -0400370 "src/ports/SkGlobalInitialization_none_imagefilters.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800371 "src/ports/SkImageGenerator_none.cpp",
372 "src/ports/SkTLS_none.cpp",
373 ],
374)
375
benjaminwagner56f6d062016-01-13 10:45:19 -0800376################################################################################
Ben Wagnerdea74282017-03-16 19:15:09 -0400377## skia_srcs()
benjaminwagner56f6d062016-01-13 10:45:19 -0800378################################################################################
Ben Wagner9eca72b2017-10-17 10:57:34 -0400379def skia_srcs(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400380 """Sources to be compiled into the skia library."""
381 return skia_glob(BASE_SRCS_ALL) + skia_select(
382 os_conditions,
383 [
384 skia_glob(BASE_SRCS_UNIX),
385 skia_glob(BASE_SRCS_ANDROID),
386 skia_glob(BASE_SRCS_IOS),
387 ],
388 )
benjaminwagner39e7aa42015-11-18 13:26:10 -0800389
benjaminwagner56f6d062016-01-13 10:45:19 -0800390################################################################################
391## INCLUDES
392################################################################################
benjaminwagner39e7aa42015-11-18 13:26:10 -0800393
benjaminwagner787ca872015-08-17 12:58:10 -0700394# Includes needed by Skia implementation. Not public includes.
395INCLUDES = [
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800396 "include/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700397 "include/c",
398 "include/codec",
399 "include/config",
400 "include/core",
Ben Wagnercc62b5d2018-09-20 16:26:31 -0400401 "include/docs",
benjaminwagner787ca872015-08-17 12:58:10 -0700402 "include/effects",
Matt Sarettd7093c22017-05-09 15:28:32 -0400403 "include/encode",
benjaminwagner787ca872015-08-17 12:58:10 -0700404 "include/gpu",
benjaminwagner787ca872015-08-17 12:58:10 -0700405 "include/pathops",
benjaminwagner787ca872015-08-17 12:58:10 -0700406 "include/ports",
407 "include/private",
408 "include/utils",
iroth8b99ef42015-11-02 11:11:21 -0800409 "include/utils/mac",
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800410 "src/codec",
benjaminwagner787ca872015-08-17 12:58:10 -0700411 "src/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700412 "src/gpu",
413 "src/image",
Mike Klein135a1b12017-08-15 13:13:59 -0400414 "src/images",
benjaminwagner787ca872015-08-17 12:58:10 -0700415 "src/lazy",
416 "src/opts",
417 "src/pdf",
Ben Wagner4ccf49c2018-03-26 15:46:40 -0400418 "src/ports",
benjaminwagner787ca872015-08-17 12:58:10 -0700419 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400420 "src/shaders",
Michael Ludwig4f94ef62018-09-12 15:22:16 -0400421 "src/shaders/gradients",
benjaminwagnerc8962512016-09-30 12:06:27 -0700422 "src/sksl",
benjaminwagner787ca872015-08-17 12:58:10 -0700423 "src/utils",
Ben Wagnerd0a3b062016-10-24 14:11:12 -0400424 "third_party/gif",
benjaminwagner56f6d062016-01-13 10:45:19 -0800425]
benjaminwagner787ca872015-08-17 12:58:10 -0700426
benjaminwagner56f6d062016-01-13 10:45:19 -0800427################################################################################
428## DM_SRCS
429################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700430
benjaminwagner56f6d062016-01-13 10:45:19 -0800431DM_SRCS_ALL = struct(
432 include = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700433 "dm/*.cpp",
434 "dm/*.h",
Mike Klein60900b52018-09-21 11:19:45 -0400435 "experimental/pipe/*.cpp",
436 "experimental/pipe/*.h",
Ben Wagner4ccf49c2018-03-26 15:46:40 -0400437 "experimental/svg/model/*.cpp",
438 "experimental/svg/model/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700439 "gm/*.cpp",
440 "gm/*.h",
Ben Wagner4ccf49c2018-03-26 15:46:40 -0400441 "src/xml/*.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700442 "tests/*.cpp",
443 "tests/*.h",
Ben Wagnerfb4487b2018-03-26 17:48:09 -0400444 "tools/ios_utils.h",
445 "tools/BinaryAsset.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700446 "tools/BigPathBench.inc",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700447 "tools/CrashHandler.cpp",
448 "tools/CrashHandler.h",
Robert Phillipse61ba842018-05-30 08:27:26 -0400449 "tools/DDLPromiseImageHelper.cpp",
450 "tools/DDLPromiseImageHelper.h",
451 "tools/DDLTileHelper.cpp",
452 "tools/DDLTileHelper.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700453 "tools/ProcStats.cpp",
454 "tools/ProcStats.h",
Ben Wagnerfb4487b2018-03-26 17:48:09 -0400455 "tools/Registry.h",
456 "tools/ResourceFactory.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700457 "tools/Resources.cpp",
458 "tools/Resources.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700459 "tools/SkJSONCPP.h",
460 "tools/UrlDataManager.cpp",
461 "tools/UrlDataManager.h",
462 "tools/debugger/*.cpp",
463 "tools/debugger/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700464 "tools/flags/*.cpp",
465 "tools/flags/*.h",
Ben Wagner483c7722018-02-20 17:06:07 -0500466 "tools/fonts/SkRandomScalerContext.cpp",
467 "tools/fonts/SkRandomScalerContext.h",
468 "tools/fonts/SkTestFontMgr.cpp",
469 "tools/fonts/SkTestFontMgr.h",
Ben Wagner97182cc2018-02-15 10:20:04 -0500470 "tools/fonts/SkTestSVGTypeface.cpp",
471 "tools/fonts/SkTestSVGTypeface.h",
472 "tools/fonts/SkTestTypeface.cpp",
473 "tools/fonts/SkTestTypeface.h",
Ben Wagner483c7722018-02-20 17:06:07 -0500474 "tools/fonts/sk_tool_utils_font.cpp",
475 "tools/fonts/test_font_monospace.inc",
476 "tools/fonts/test_font_sans_serif.inc",
477 "tools/fonts/test_font_serif.inc",
478 "tools/fonts/test_font_index.inc",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700479 "tools/gpu/**/*.cpp",
480 "tools/gpu/**/*.h",
mtkleine1fc4522016-02-09 12:32:52 -0800481 "tools/random_parse_path.cpp",
482 "tools/random_parse_path.h",
Ben Wagnerfb4487b2018-03-26 17:48:09 -0400483 "tools/sk_pixel_iter.h",
benjaminwagner32885142015-10-24 07:55:31 -0700484 "tools/sk_tool_utils.cpp",
485 "tools/sk_tool_utils.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700486 "tools/timer/*.cpp",
487 "tools/timer/*.h",
Brian Salomon40d01192017-07-19 13:05:11 -0400488 "tools/trace/*.cpp",
489 "tools/trace/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700490 ],
491 exclude = [
Mike Kleindb537602018-06-01 11:01:11 -0400492 "gm/cgms.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700493 "tests/FontMgrAndroidParserTest.cpp", # Android-only.
Ben Wagner37a06c02018-06-22 21:11:00 +0000494 "tests/FontMgrFontConfigTest.cpp", # FontConfig-only.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700495 "tests/skia_test.cpp", # Old main.
Brian Salomonf9ec4702017-11-19 14:46:36 -0500496 "tools/gpu/atlastext/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700497 "tools/gpu/gl/angle/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700498 "tools/gpu/gl/egl/*",
499 "tools/gpu/gl/glx/*",
500 "tools/gpu/gl/iOS/*",
501 "tools/gpu/gl/mac/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700502 "tools/gpu/gl/win/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700503 "tools/timer/SysTimer_mach.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700504 "tools/timer/SysTimer_windows.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700505 ],
506)
507
Ben Wagnerdea74282017-03-16 19:15:09 -0400508################################################################################
509## dm_srcs()
510################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700511
Ben Wagner9eca72b2017-10-17 10:57:34 -0400512def dm_srcs(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400513 """Sources for the dm binary for the specified os."""
514 return skia_glob(DM_SRCS_ALL) + skia_select(
515 os_conditions,
516 [
517 [],
518 ["tests/FontMgrAndroidParserTest.cpp"],
519 [],
520 ],
521 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800522
523################################################################################
524## DM_INCLUDES
525################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700526
benjaminwagner6f6bef82015-10-15 08:09:44 -0700527DM_INCLUDES = [
benjaminwagnerb1fe8f62016-02-01 09:05:08 -0800528 "dm",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700529 "gm",
Mike Klein60900b52018-09-21 11:19:45 -0400530 "experimental/pipe",
Mike Reed7f302c42017-02-18 14:12:08 -0500531 "experimental/svg/model",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700532 "src/codec",
Mike Reedaab8ce42017-02-18 12:57:09 -0500533 "src/core",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700534 "src/effects",
535 "src/fonts",
Hal Canarydb683012016-11-23 08:55:18 -0700536 "src/images",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700537 "src/pathops",
538 "src/pipe/utils",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700539 "src/ports",
Florin Malita5edba452017-05-30 16:39:47 -0400540 "src/shaders",
541 "src/shaders/gradients",
Mike Reedf71828f2017-02-18 09:51:33 -0500542 "src/xml",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700543 "tests",
544 "tools",
benjaminwagner99fb6702016-07-28 15:12:21 -0700545 "tools/debugger",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700546 "tools/flags",
Ben Wagner483c7722018-02-20 17:06:07 -0500547 "tools/fonts",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700548 "tools/gpu",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700549 "tools/timer",
Brian Salomon40d01192017-07-19 13:05:11 -0400550 "tools/trace",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700551]
552
benjaminwagner56f6d062016-01-13 10:45:19 -0800553################################################################################
554## DM_ARGS
555################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700556
Ben Wagner59f9edb2016-11-28 15:30:37 -0500557def DM_ARGS(asan):
Ben Wagner722efde2018-07-31 18:04:05 -0400558 source = ["tests", "gm", "image", "lottie"]
Ben Wagnerb303a422018-07-31 10:31:06 -0400559
560 # TODO(benjaminwagner): f16, pic-8888, serialize-8888, and tiles_rt-8888 fail.
561 config = ["565", "8888", "pdf"]
562 match = ["~Codec_78329453"]
563 return (["--src"] + source + ["--config"] + config + ["--nonativeFonts"] +
564 ["--match"] + match)
benjaminwagner56f6d062016-01-13 10:45:19 -0800565
566################################################################################
567## COPTS
568################################################################################
iroth8b99ef42015-11-02 11:11:21 -0800569
Ben Wagner9eca72b2017-10-17 10:57:34 -0400570def base_copts(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400571 return skia_select(
572 os_conditions,
573 [
574 # UNIX
575 [
576 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
577 # Internal use of deprecated methods. :(
578 "-Wno-deprecated-declarations",
579 # TODO(kjlubick)
580 "-Wno-self-assign", # Spurious warning in tests/PathOpsDVectorTest.cpp?
581 ],
582 # ANDROID
583 [
Mike Klein9b7e99e2018-08-22 16:45:11 -0400584 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
Ben Wagnerb303a422018-07-31 10:31:06 -0400585 # 'GrResourceCache' declared with greater visibility than the
586 # type of its field 'GrResourceCache::fPurgeableQueue'... bogus.
587 "-Wno-error=attributes",
588 ],
589 # IOS
Benjamin Barenblatfd10d172018-07-31 16:41:37 -0400590 [
591 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
592 ],
Ben Wagnerb303a422018-07-31 10:31:06 -0400593 ],
594 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800595
596################################################################################
597## DEFINES
598################################################################################
599
Ben Wagner9eca72b2017-10-17 10:57:34 -0400600def base_defines(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400601 return [
602 # Chrome DEFINES.
603 "SK_USE_FREETYPE_EMBOLDEN",
604 # Turn on a few Google3-specific build fixes.
605 "SK_BUILD_FOR_GOOGLE3",
606 # Required for building dm.
607 "GR_TEST_UTILS",
608 # Staging flags for API changes
609 # Should remove after we update golden images
610 "SK_WEBP_ENCODER_USE_DEFAULT_METHOD",
611 # Experiment to diagnose image diffs in Google3
612 "SK_JUMPER_DISABLE_8BIT",
613 # JPEG is in codec_limited
614 "SK_HAS_JPEG_LIBRARY",
615 ] + skia_select(
616 os_conditions,
617 [
618 # UNIX
619 [
620 "PNG_SKIP_SETJMP_CHECK",
621 "SK_BUILD_FOR_UNIX",
622 "SK_SAMPLES_FOR_X",
623 "SK_PDF_USE_SFNTLY",
624 "SK_CODEC_DECODES_RAW",
625 "SK_HAS_PNG_LIBRARY",
626 "SK_HAS_WEBP_LIBRARY",
627 ],
628 # ANDROID
629 [
630 "SK_BUILD_FOR_ANDROID",
631 "SK_CODEC_DECODES_RAW",
632 "SK_HAS_PNG_LIBRARY",
633 "SK_HAS_WEBP_LIBRARY",
634 ],
635 # IOS
636 [
637 "SK_BUILD_FOR_IOS",
638 "SK_BUILD_NO_OPTS",
639 "SKNX_NO_SIMD",
640 ],
641 ],
642 )
benjaminwagner787ca872015-08-17 12:58:10 -0700643
benjaminwagner56f6d062016-01-13 10:45:19 -0800644################################################################################
645## LINKOPTS
646################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700647
Ben Wagner9eca72b2017-10-17 10:57:34 -0400648def base_linkopts(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400649 return [
650 "-ldl",
651 ] + skia_select(
652 os_conditions,
653 [
654 # UNIX
655 [],
656 # ANDROID
657 [
658 "-lEGL",
Ben Wagner773151f2018-08-17 09:28:53 -0400659 "-lGLESv2",
Ben Wagnerb303a422018-07-31 10:31:06 -0400660 ],
661 # IOS
662 [
663 "-framework CoreFoundation",
664 "-framework CoreGraphics",
665 "-framework CoreText",
666 "-framework ImageIO",
667 "-framework MobileCoreServices",
668 ],
669 ],
670 )