blob: dfc163b18784a2f71cbab8194aa15e809f2e013e [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################################################################################
Ben Wagner9eca72b2017-10-17 10:57:34 -040055## skia_{all,public}_hdrs()
56################################################################################
57def skia_all_hdrs():
58 return native.glob(["src/**/*.h", "include/**/*.h"])
59
60def skia_public_hdrs():
61 return native.glob(["include/**/*.h"],
62 exclude=[
63 "include/private/**/*",
64 "include/views/**/*", # Not used.
65 ])
66
67################################################################################
68## skia_opts_srcs()
69################################################################################
70# Intel
71SKIA_OPTS_SSE2 = "SSE2"
72
73SKIA_OPTS_SSSE3 = "SSSE3"
74
75SKIA_OPTS_SSE41 = "SSE41"
76
77SKIA_OPTS_SSE42 = "SSE42"
78
79SKIA_OPTS_AVX = "AVX"
80
81# Arm
82SKIA_OPTS_NEON = "NEON"
83
84SKIA_OPTS_CRC32 = "CRC32" # arm64
85
86def opts_srcs(opts):
87 if opts == SKIA_OPTS_SSE2:
88 return native.glob([
89 "src/opts/*_SSE2.cpp",
90 "src/opts/*_sse2.cpp", # No matches currently.
91 ])
92 elif opts == SKIA_OPTS_SSSE3:
93 return native.glob([
94 "src/opts/*_SSSE3.cpp",
95 "src/opts/*_ssse3.cpp",
96 ])
97 elif opts == SKIA_OPTS_SSE41:
98 return native.glob([
99 "src/opts/*_sse41.cpp",
100 ])
101 elif opts == SKIA_OPTS_SSE42:
102 return native.glob([
103 "src/opts/*_sse42.cpp",
104 ])
105 elif opts == SKIA_OPTS_AVX:
106 return native.glob([
107 "src/opts/*_avx.cpp",
108 ])
109 elif opts == SKIA_OPTS_NEON:
110 return native.glob([
111 "src/opts/*_neon.cpp",
112 ])
113 elif opts == SKIA_OPTS_CRC32:
114 return native.glob([
115 "src/opts/*_crc32.cpp",
116 ])
117 else:
118 fail("skia_opts_srcs parameter 'opts' must be one of SKIA_OPTS_*.")
119
120def opts_cflags(opts):
121 if opts == SKIA_OPTS_SSE2:
122 return ["-msse2"]
123 elif opts == SKIA_OPTS_SSSE3:
124 return ["-mssse3"]
125 elif opts == SKIA_OPTS_SSE41:
126 return ["-msse4.1"]
127 elif opts == SKIA_OPTS_SSE42:
128 return ["-msse4.2"]
129 elif opts == SKIA_OPTS_AVX:
130 return ["-mavx"]
131 elif opts == SKIA_OPTS_NEON:
132 return ["-mfpu=neon"]
133 elif opts == SKIA_OPTS_CRC32:
Mike Kleinc29bb572017-10-24 11:40:41 -0400134 # NDK r11's Clang (3.8) doesn't pass along this -march setting correctly to an external
135 # assembler, so we do it manually with -Wa. This is just a bug, fixed in later Clangs.
136 return ["-march=armv8-a+crc", "-Wa,-march=armv8-a+crc"]
Ben Wagner9eca72b2017-10-17 10:57:34 -0400137 else:
138 return []
139
140SKIA_CPU_ARM = "ARM"
141
142SKIA_CPU_ARM64 = "ARM64"
143
144SKIA_CPU_X86 = "X86"
145
146SKIA_CPU_OTHER = "OTHER"
147
148def opts_rest_srcs(cpu):
149 srcs = []
150 if cpu == SKIA_CPU_ARM or cpu == SKIA_CPU_ARM64:
151 srcs += native.glob([
152 "src/opts/*_arm.cpp",
153 "src/opts/SkBitmapProcState_opts_none.cpp",
154 ])
155 if cpu == SKIA_CPU_ARM64:
156 # NEON doesn't need special flags to compile on ARM64.
157 srcs += native.glob([
158 "src/opts/*_neon.cpp",
159 ])
160 elif cpu == SKIA_CPU_X86:
161 srcs += native.glob([
162 "src/opts/*_x86.cpp",
163 ])
164 elif cpu == SKIA_CPU_OTHER:
165 srcs += native.glob([
166 "src/opts/*_none.cpp",
167 ])
168 else:
169 fail("opts_rest_srcs parameter 'cpu' must be one of " +
170 "SKIA_CPU_{ARM,ARM64,X86,OTHER}.")
171 return srcs
172
173def skia_opts_deps(cpu):
174 res = [":opts_rest"]
175
176 if cpu == SKIA_CPU_ARM:
177 res += [":opts_neon"]
178
179 if cpu == SKIA_CPU_ARM64:
180 res += [":opts_crc32"]
Mike Kleinc29bb572017-10-24 11:40:41 -0400181
Ben Wagner9eca72b2017-10-17 10:57:34 -0400182 if cpu == SKIA_CPU_X86:
183 res += [
184 ":opts_sse2",
185 ":opts_ssse3",
186 ":opts_sse41",
187 ":opts_sse42",
188 ":opts_avx",
189 ]
190
191 return res
192
193################################################################################
benjaminwagner56f6d062016-01-13 10:45:19 -0800194## BASE_SRCS
195################################################################################
benjaminwagner787ca872015-08-17 12:58:10 -0700196
benjaminwagner39e7aa42015-11-18 13:26:10 -0800197# All platform-independent SRCS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800198BASE_SRCS_ALL = struct(
199 include = [
Ben Wagnerdea74282017-03-16 19:15:09 -0400200 "include/private/**/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700201 "src/**/*.h",
202 "src/**/*.cpp",
Ben Wagnerdea74282017-03-16 19:15:09 -0400203 "src/**/*.inc",
Mike Klein0a64e322017-03-29 17:32:50 -0400204 "src/jumper/SkJumper_generated.S",
benjaminwagner787ca872015-08-17 12:58:10 -0700205
mtkleind55d13a2015-08-18 08:51:49 -0700206 # Third Party
benjaminwagner787ca872015-08-17 12:58:10 -0700207 "third_party/etc1/*.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700208 "third_party/etc1/*.h",
Ben Wagnerd0a3b062016-10-24 14:11:12 -0400209 "third_party/gif/*.cpp",
210 "third_party/gif/*.h",
benjaminwagner787ca872015-08-17 12:58:10 -0700211 ],
Ben Wagnerdea74282017-03-16 19:15:09 -0400212 exclude = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700213 # Exclude platform-dependent files.
iroth76a12252016-01-07 07:11:39 -0800214 "src/codec/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700215 "src/device/xps/*", # Windows-only. Move to ports?
216 "src/doc/*_XPS.cpp", # Windows-only. Move to ports?
217 "src/gpu/gl/android/*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700218 "src/gpu/gl/egl/*",
benjaminwagneraf3b35e2016-03-28 13:27:28 -0700219 "src/gpu/gl/glfw/*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700220 "src/gpu/gl/glx/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700221 "src/gpu/gl/iOS/*",
222 "src/gpu/gl/mac/*",
223 "src/gpu/gl/win/*",
224 "src/opts/**/*",
225 "src/ports/**/*",
226 "src/utils/android/**/*",
227 "src/utils/mac/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700228 "src/utils/win/**/*",
229 "src/views/sdl/*",
230 "src/views/win/*",
231 "src/views/unix/*",
232
233 # Exclude multiple definitions.
234 # TODO(mtklein): Move to opts?
benjaminwagnerca26a182016-03-14 15:21:12 -0700235 "src/pdf/SkDocument_PDF_None.cpp", # We use src/pdf/SkPDFDocument.cpp.
benjaminwagner86ea33e2015-10-26 10:46:25 -0700236 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
237 "src/gpu/gl/GrGLDefaultInterface_native.cpp",
iroth5f0de062016-02-17 12:47:27 -0800238 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700239
240 # Exclude files that don't compile with the current DEFINES.
benjaminwagner921e48b2016-07-15 11:27:27 -0700241 "src/svg/**/*", # Depends on XML.
242 "src/xml/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700243
benjaminwagner39e7aa42015-11-18 13:26:10 -0800244 # Conflicting dependencies among Lua versions. See cl/107087297.
245 "src/utils/SkLua*",
246
benjaminwagner6f6bef82015-10-15 08:09:44 -0700247 # Not used.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700248 "src/views/**/*",
egdaniel32119f12016-02-22 10:07:54 -0800249
250 # Currently exclude all vulkan specific files
251 "src/gpu/vk/*",
benjaminwagnerc8962512016-09-30 12:06:27 -0700252
253 # Defines main.
254 "src/sksl/SkSLMain.cpp",
Ethan Nicholas8d7f4ae2017-09-07 11:07:42 -0400255
256 # Only used to regenerate the lexer
257 "src/sksl/lex/*",
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500258
259 # Atlas text
260 "src/atlastext/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700261 ],
262)
263
Ben Wagner9eca72b2017-10-17 10:57:34 -0400264def codec_srcs(limited):
265 """Sources for the codecs. Excludes Ico, Webp, Png, and Raw if limited."""
266 exclude = []
267 if limited:
268 exclude += [
269 "src/codec/*Ico*.cpp",
270 "src/codec/*Webp*.cpp",
271 "src/codec/*Png*",
272 "src/codec/*Raw*.cpp",
273 ]
274 return native.glob(["src/codec/*.cpp"], exclude = exclude)
275
benjaminwagner6f6bef82015-10-15 08:09:44 -0700276# Platform-dependent SRCS for google3-default platform.
benjaminwagner56f6d062016-01-13 10:45:19 -0800277BASE_SRCS_UNIX = struct(
278 include = [
iroth5f0de062016-02-17 12:47:27 -0800279 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700280 "src/ports/**/*.cpp",
281 "src/ports/**/*.h",
282 ],
283 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800284 "src/ports/*CG*",
msarettfc0b6d12016-03-17 13:50:17 -0700285 "src/ports/*WIC*",
mtklein3f193a92016-03-10 08:52:05 -0800286 "src/ports/*android*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700287 "src/ports/*chromium*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700288 "src/ports/*mac*",
289 "src/ports/*mozalloc*",
290 "src/ports/*nacl*",
291 "src/ports/*win*",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800292 "src/ports/SkFontMgr_custom_directory_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700293 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700294 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700295 "src/ports/SkFontMgr_empty_factory.cpp",
benjaminwagner404816e2015-12-03 05:04:03 -0800296 "src/ports/SkFontMgr_fontconfig.cpp",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800297 "src/ports/SkFontMgr_fontconfig_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500298 "src/ports/SkGlobalInitialization_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700299 "src/ports/SkImageGenerator_none.cpp",
300 "src/ports/SkTLS_none.cpp",
mtkleind55d13a2015-08-18 08:51:49 -0700301 ],
302)
303
benjaminwagner86ea33e2015-10-26 10:46:25 -0700304# Platform-dependent SRCS for google3-default Android.
benjaminwagner56f6d062016-01-13 10:45:19 -0800305BASE_SRCS_ANDROID = struct(
306 include = [
iroth5f0de062016-02-17 12:47:27 -0800307 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700308 # TODO(benjaminwagner): Figure out how to compile with EGL.
benjaminwagner86ea33e2015-10-26 10:46:25 -0700309 "src/ports/**/*.cpp",
310 "src/ports/**/*.h",
311 ],
312 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800313 "src/ports/*CG*",
mtklein3f193a92016-03-10 08:52:05 -0800314 "src/ports/*FontConfig*",
msarettfc0b6d12016-03-17 13:50:17 -0700315 "src/ports/*WIC*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700316 "src/ports/*chromium*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700317 "src/ports/*fontconfig*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700318 "src/ports/*mac*",
319 "src/ports/*mozalloc*",
320 "src/ports/*nacl*",
321 "src/ports/*win*",
322 "src/ports/SkDebug_stdio.cpp",
323 "src/ports/SkFontMgr_custom_directory_factory.cpp",
324 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700325 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700326 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500327 "src/ports/SkGlobalInitialization_none.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700328 "src/ports/SkImageGenerator_none.cpp",
329 "src/ports/SkTLS_none.cpp",
330 ],
331)
332
iroth8b99ef42015-11-02 11:11:21 -0800333# Platform-dependent SRCS for google3-default iOS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800334BASE_SRCS_IOS = struct(
335 include = [
iroth5f0de062016-02-17 12:47:27 -0800336 "src/gpu/gl/GrGLDefaultInterface_native.cpp",
337 "src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800338 "src/ports/**/*.cpp",
339 "src/ports/**/*.h",
irothab669de2016-02-16 19:17:01 -0800340 "src/utils/mac/*.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800341 ],
342 exclude = [
mtklein3f193a92016-03-10 08:52:05 -0800343 "src/ports/*FontConfig*",
344 "src/ports/*FreeType*",
msarettfc0b6d12016-03-17 13:50:17 -0700345 "src/ports/*WIC*",
iroth8b99ef42015-11-02 11:11:21 -0800346 "src/ports/*android*",
347 "src/ports/*chromium*",
348 "src/ports/*fontconfig*",
iroth8b99ef42015-11-02 11:11:21 -0800349 "src/ports/*mozalloc*",
350 "src/ports/*nacl*",
351 "src/ports/*win*",
iroth8b99ef42015-11-02 11:11:21 -0800352 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500353 "src/ports/SkFontMgr_custom_directory.cpp",
354 "src/ports/SkFontMgr_custom_embedded.cpp",
355 "src/ports/SkFontMgr_custom_empty.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800356 "src/ports/SkFontMgr_custom_directory_factory.cpp",
357 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700358 "src/ports/SkFontMgr_custom_empty_factory.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800359 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500360 "src/ports/SkGlobalInitialization_none.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800361 "src/ports/SkImageGenerator_none.cpp",
362 "src/ports/SkTLS_none.cpp",
363 ],
364)
365
benjaminwagner56f6d062016-01-13 10:45:19 -0800366################################################################################
Ben Wagnerdea74282017-03-16 19:15:09 -0400367## skia_srcs()
benjaminwagner56f6d062016-01-13 10:45:19 -0800368################################################################################
Ben Wagner9eca72b2017-10-17 10:57:34 -0400369def skia_srcs(os_conditions):
Ben Wagnerdea74282017-03-16 19:15:09 -0400370 """Sources to be compiled into the skia library."""
Ben Wagner9eca72b2017-10-17 10:57:34 -0400371 return skia_glob(BASE_SRCS_ALL) + skia_select(
372 os_conditions,
373 [
374 skia_glob(BASE_SRCS_UNIX),
375 skia_glob(BASE_SRCS_ANDROID),
376 skia_glob(BASE_SRCS_IOS),
377 ],
378 )
benjaminwagner39e7aa42015-11-18 13:26:10 -0800379
benjaminwagner56f6d062016-01-13 10:45:19 -0800380################################################################################
381## INCLUDES
382################################################################################
benjaminwagner39e7aa42015-11-18 13:26:10 -0800383
benjaminwagner787ca872015-08-17 12:58:10 -0700384# Includes needed by Skia implementation. Not public includes.
385INCLUDES = [
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800386 "include/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700387 "include/c",
robertphillips188d44c2016-02-01 04:54:14 -0800388 "include/client/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700389 "include/codec",
390 "include/config",
391 "include/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700392 "include/effects",
Matt Sarettd7093c22017-05-09 15:28:32 -0400393 "include/encode",
benjaminwagner787ca872015-08-17 12:58:10 -0700394 "include/gpu",
395 "include/images",
396 "include/pathops",
benjaminwagner787ca872015-08-17 12:58:10 -0700397 "include/pipe",
398 "include/ports",
399 "include/private",
400 "include/utils",
iroth8b99ef42015-11-02 11:11:21 -0800401 "include/utils/mac",
402 "include/utils/win",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700403 "include/svg",
benjaminwagner787ca872015-08-17 12:58:10 -0700404 "include/xml",
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800405 "src/codec",
benjaminwagner787ca872015-08-17 12:58:10 -0700406 "src/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700407 "src/gpu",
408 "src/image",
Mike Klein135a1b12017-08-15 13:13:59 -0400409 "src/images",
benjaminwagner787ca872015-08-17 12:58:10 -0700410 "src/lazy",
411 "src/opts",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800412 "src/ports",
benjaminwagner787ca872015-08-17 12:58:10 -0700413 "src/pdf",
benjaminwagner787ca872015-08-17 12:58:10 -0700414 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400415 "src/shaders",
benjaminwagnerc8962512016-09-30 12:06:27 -0700416 "src/sksl",
benjaminwagner787ca872015-08-17 12:58:10 -0700417 "src/utils",
418 "third_party/etc1",
Ben Wagnerd0a3b062016-10-24 14:11:12 -0400419 "third_party/gif",
benjaminwagner56f6d062016-01-13 10:45:19 -0800420]
benjaminwagner787ca872015-08-17 12:58:10 -0700421
benjaminwagner56f6d062016-01-13 10:45:19 -0800422################################################################################
423## DM_SRCS
424################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700425
benjaminwagner56f6d062016-01-13 10:45:19 -0800426DM_SRCS_ALL = struct(
427 include = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700428 "dm/*.cpp",
429 "dm/*.h",
430 "gm/*.c",
431 "gm/*.cpp",
432 "gm/*.h",
433 "tests/*.cpp",
434 "tests/*.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700435 "tools/BigPathBench.inc",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700436 "tools/CrashHandler.cpp",
437 "tools/CrashHandler.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700438 "tools/ProcStats.cpp",
439 "tools/ProcStats.h",
440 "tools/Resources.cpp",
441 "tools/Resources.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700442 "tools/SkJSONCPP.h",
Mike Klein10d66cc2017-11-10 11:33:43 -0500443 "tools/SkRandomScalerContext.cpp",
444 "tools/SkRandomScalerContext.h",
445 "tools/SkTestScalerContext.cpp",
446 "tools/SkTestScalerContext.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700447 "tools/UrlDataManager.cpp",
448 "tools/UrlDataManager.h",
449 "tools/debugger/*.cpp",
450 "tools/debugger/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700451 "tools/flags/*.cpp",
452 "tools/flags/*.h",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700453 "tools/gpu/**/*.cpp",
454 "tools/gpu/**/*.h",
brianosman6d3119c2016-04-19 19:41:54 -0700455 "tools/picture_utils.cpp",
benjaminwagner99fb6702016-07-28 15:12:21 -0700456 "tools/picture_utils.h",
mtkleine1fc4522016-02-09 12:32:52 -0800457 "tools/random_parse_path.cpp",
458 "tools/random_parse_path.h",
benjaminwagner32885142015-10-24 07:55:31 -0700459 "tools/sk_tool_utils.cpp",
460 "tools/sk_tool_utils.h",
461 "tools/sk_tool_utils_font.cpp",
benjaminwagner99fb6702016-07-28 15:12:21 -0700462 "tools/test_font_monospace.inc",
463 "tools/test_font_sans_serif.inc",
464 "tools/test_font_serif.inc",
465 "tools/test_font_index.inc",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700466 "tools/timer/*.cpp",
467 "tools/timer/*.h",
Brian Salomon40d01192017-07-19 13:05:11 -0400468 "tools/trace/*.cpp",
469 "tools/trace/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700470 ],
471 exclude = [
benjaminwagner86ea33e2015-10-26 10:46:25 -0700472 "tests/FontMgrAndroidParserTest.cpp", # Android-only.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700473 "tests/skia_test.cpp", # Old main.
474 "tests/SkpSkGrTest.cpp", # Alternate main.
benjaminwagner921e48b2016-07-15 11:27:27 -0700475 "tests/SVGDeviceTest.cpp",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700476 "tools/gpu/gl/angle/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700477 "tools/gpu/gl/egl/*",
478 "tools/gpu/gl/glx/*",
479 "tools/gpu/gl/iOS/*",
480 "tools/gpu/gl/mac/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700481 "tools/gpu/gl/win/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700482 "tools/timer/SysTimer_mach.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700483 "tools/timer/SysTimer_windows.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700484 ],
485)
486
Ben Wagnerdea74282017-03-16 19:15:09 -0400487################################################################################
488## dm_srcs()
489################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700490
Ben Wagner9eca72b2017-10-17 10:57:34 -0400491def dm_srcs(os_conditions):
Ben Wagnerdea74282017-03-16 19:15:09 -0400492 """Sources for the dm binary for the specified os."""
Ben Wagner9eca72b2017-10-17 10:57:34 -0400493 return skia_glob(DM_SRCS_ALL) + skia_select(
494 os_conditions,
495 [
496 [],
497 ["tests/FontMgrAndroidParserTest.cpp"],
498 [],
499 ],
500 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800501
502################################################################################
503## DM_INCLUDES
504################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700505
benjaminwagner6f6bef82015-10-15 08:09:44 -0700506DM_INCLUDES = [
benjaminwagnerb1fe8f62016-02-01 09:05:08 -0800507 "dm",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700508 "gm",
Mike Reed7f302c42017-02-18 14:12:08 -0500509 "experimental/svg/model",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700510 "src/codec",
Mike Reedaab8ce42017-02-18 12:57:09 -0500511 "src/core",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700512 "src/effects",
513 "src/fonts",
Hal Canarydb683012016-11-23 08:55:18 -0700514 "src/images",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700515 "src/pathops",
516 "src/pipe/utils",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700517 "src/ports",
Florin Malita5edba452017-05-30 16:39:47 -0400518 "src/shaders",
519 "src/shaders/gradients",
Mike Reedf71828f2017-02-18 09:51:33 -0500520 "src/xml",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700521 "tests",
522 "tools",
benjaminwagner99fb6702016-07-28 15:12:21 -0700523 "tools/debugger",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700524 "tools/flags",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700525 "tools/gpu",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700526 "tools/timer",
Brian Salomon40d01192017-07-19 13:05:11 -0400527 "tools/trace",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700528]
529
benjaminwagner56f6d062016-01-13 10:45:19 -0800530################################################################################
531## DM_ARGS
532################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700533
Ben Wagner59f9edb2016-11-28 15:30:37 -0500534def DM_ARGS(asan):
benjaminwagner83906ae2016-05-01 15:02:25 -0700535 source = ["tests", "gm", "image"]
Ben Wagnere2cbd042017-08-11 09:39:04 -0400536 # TODO(benjaminwagner): f16, pic-8888, serialize-8888, and tiles_rt-8888 fail.
537 config = ["565", "8888", "pdf", "srgb"]
benjaminwagner83906ae2016-05-01 15:02:25 -0700538 # TODO(mtklein): maybe investigate why these fail?
539 match = [
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400540 "~^FontHostStream$$",
541 "~^FontMgr$$",
542 "~^PaintBreakText$$",
543 "~^RecordDraw_TextBounds$$",
benjaminwagner83906ae2016-05-01 15:02:25 -0700544 ]
545 if asan:
Ben Wagner59f9edb2016-11-28 15:30:37 -0500546 # The ASAN we use with Bazel has some strict checks, so omit tests that
547 # trigger them.
Ben Wagner54b22132017-10-17 18:19:37 -0400548 # All of the following are due to
549 # https://bugs.chromium.org/p/skia/issues/detail?id=7052
benjaminwagner83906ae2016-05-01 15:02:25 -0700550 match += [
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400551 "~^clippedcubic2$$",
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400552 "~^PathOpsCubicIntersection$$",
553 "~^PathOpsCubicLineIntersection$$",
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400554 "~^PathOpsOpCubicsThreaded$$",
555 "~^PathOpsOpLoopsThreaded$$",
benjaminwagner56f6d062016-01-13 10:45:19 -0800556 ]
Ben Wagner59f9edb2016-11-28 15:30:37 -0500557 return ["--src"] + source + ["--config"] + config + ["--match"] + match
benjaminwagner56f6d062016-01-13 10:45:19 -0800558
559################################################################################
560## COPTS
561################################################################################
iroth8b99ef42015-11-02 11:11:21 -0800562
Ben Wagner9eca72b2017-10-17 10:57:34 -0400563def base_copts(os_conditions):
564 return skia_select(
565 os_conditions,
566 [
567 # UNIX
568 [
569 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
570 # Internal use of deprecated methods. :(
571 "-Wno-deprecated-declarations",
572 ],
573 # ANDROID
574 [
575 # 'GrResourceCache' declared with greater visibility than the
576 # type of its field 'GrResourceCache::fPurgeableQueue'... bogus.
577 "-Wno-error=attributes",
578 ],
579 # IOS
580 [],
581 ],
582 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800583
584################################################################################
585## DEFINES
586################################################################################
587
Ben Wagner9eca72b2017-10-17 10:57:34 -0400588def base_defines(os_conditions):
589 return [
590 # Chrome DEFINES.
591 "SK_USE_FREETYPE_EMBOLDEN",
592 # Turn on a few Google3-specific build fixes.
593 "GOOGLE3",
594 # Required for building dm.
595 "GR_TEST_UTILS",
596 # Staging flags for API changes
597 # Should remove after we update golden images
598 "SK_WEBP_ENCODER_USE_DEFAULT_METHOD",
599 # Experiment to diagnose image diffs in Google3
600 "SK_JUMPER_DISABLE_8BIT",
601 # JPEG is in codec_limited
602 "SK_HAS_JPEG_LIBRARY",
603 ] + skia_select(
604 os_conditions,
605 [
606 # UNIX
607 [
608 "PNG_SKIP_SETJMP_CHECK",
609 "SK_BUILD_FOR_UNIX",
610 "SK_SAMPLES_FOR_X",
611 "SK_PDF_USE_SFNTLY",
612 "SK_CODEC_DECODES_RAW",
613 "SK_HAS_PNG_LIBRARY",
614 "SK_HAS_WEBP_LIBRARY",
615 ],
616 # ANDROID
617 [
618 "SK_BUILD_FOR_ANDROID",
619 "SK_CODEC_DECODES_RAW",
620 "SK_HAS_PNG_LIBRARY",
621 "SK_HAS_WEBP_LIBRARY",
622 ],
623 # IOS
624 [
625 "SK_BUILD_FOR_IOS",
626 "SK_BUILD_NO_OPTS",
627 "SKNX_NO_SIMD",
628 ],
629 ],
630 )
benjaminwagner787ca872015-08-17 12:58:10 -0700631
benjaminwagner56f6d062016-01-13 10:45:19 -0800632################################################################################
633## LINKOPTS
634################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700635
Ben Wagner9eca72b2017-10-17 10:57:34 -0400636def base_linkopts(os_conditions):
637 return [
638 "-ldl",
639 ] + skia_select(
640 os_conditions,
641 [
642 # UNIX
643 [],
644 # ANDROID
645 [
646 "-lEGL",
647 ],
648 # IOS
649 [
650 "-framework CoreFoundation",
651 "-framework CoreGraphics",
652 "-framework CoreText",
653 "-framework ImageIO",
654 "-framework MobileCoreServices",
655 ],
656 ]
657 )