blob: d66781b534a11878046b1ad649c783025c38a7b6 [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/SkThreadUtils_win.cpp", # Windows-only. Move to ports?
229 "src/utils/win/**/*",
230 "src/views/sdl/*",
231 "src/views/win/*",
232 "src/views/unix/*",
233
234 # Exclude multiple definitions.
235 # TODO(mtklein): Move to opts?
benjaminwagnerca26a182016-03-14 15:21:12 -0700236 "src/pdf/SkDocument_PDF_None.cpp", # We use src/pdf/SkPDFDocument.cpp.
benjaminwagner86ea33e2015-10-26 10:46:25 -0700237 "src/gpu/gl/GrGLCreateNativeInterface_none.cpp",
238 "src/gpu/gl/GrGLDefaultInterface_native.cpp",
iroth5f0de062016-02-17 12:47:27 -0800239 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700240
241 # Exclude files that don't compile with the current DEFINES.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700242 "src/gpu/gl/mesa/*", # Requires SK_MESA define.
benjaminwagner921e48b2016-07-15 11:27:27 -0700243 "src/svg/**/*", # Depends on XML.
244 "src/xml/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700245
benjaminwagner39e7aa42015-11-18 13:26:10 -0800246 # Conflicting dependencies among Lua versions. See cl/107087297.
247 "src/utils/SkLua*",
248
benjaminwagner6f6bef82015-10-15 08:09:44 -0700249 # Not used.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700250 "src/views/**/*",
egdaniel32119f12016-02-22 10:07:54 -0800251
252 # Currently exclude all vulkan specific files
253 "src/gpu/vk/*",
benjaminwagnerc8962512016-09-30 12:06:27 -0700254
255 # Defines main.
256 "src/sksl/SkSLMain.cpp",
Ethan Nicholas8d7f4ae2017-09-07 11:07:42 -0400257
258 # Only used to regenerate the lexer
259 "src/sksl/lex/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700260 ],
261)
262
Ben Wagner9eca72b2017-10-17 10:57:34 -0400263def codec_srcs(limited):
264 """Sources for the codecs. Excludes Ico, Webp, Png, and Raw if limited."""
265 exclude = []
266 if limited:
267 exclude += [
268 "src/codec/*Ico*.cpp",
269 "src/codec/*Webp*.cpp",
270 "src/codec/*Png*",
271 "src/codec/*Raw*.cpp",
272 ]
273 return native.glob(["src/codec/*.cpp"], exclude = exclude)
274
benjaminwagner6f6bef82015-10-15 08:09:44 -0700275# Platform-dependent SRCS for google3-default platform.
benjaminwagner56f6d062016-01-13 10:45:19 -0800276BASE_SRCS_UNIX = struct(
277 include = [
iroth5f0de062016-02-17 12:47:27 -0800278 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700279 "src/ports/**/*.cpp",
280 "src/ports/**/*.h",
281 ],
282 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800283 "src/ports/*CG*",
msarettfc0b6d12016-03-17 13:50:17 -0700284 "src/ports/*WIC*",
mtklein3f193a92016-03-10 08:52:05 -0800285 "src/ports/*android*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700286 "src/ports/*chromium*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700287 "src/ports/*mac*",
288 "src/ports/*mozalloc*",
289 "src/ports/*nacl*",
290 "src/ports/*win*",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800291 "src/ports/SkFontMgr_custom_directory_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700292 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700293 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700294 "src/ports/SkFontMgr_empty_factory.cpp",
benjaminwagner404816e2015-12-03 05:04:03 -0800295 "src/ports/SkFontMgr_fontconfig.cpp",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800296 "src/ports/SkFontMgr_fontconfig_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500297 "src/ports/SkGlobalInitialization_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700298 "src/ports/SkImageGenerator_none.cpp",
299 "src/ports/SkTLS_none.cpp",
mtkleind55d13a2015-08-18 08:51:49 -0700300 ],
301)
302
benjaminwagner86ea33e2015-10-26 10:46:25 -0700303# Platform-dependent SRCS for google3-default Android.
benjaminwagner56f6d062016-01-13 10:45:19 -0800304BASE_SRCS_ANDROID = struct(
305 include = [
iroth5f0de062016-02-17 12:47:27 -0800306 "src/gpu/gl/GrGLDefaultInterface_none.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700307 # TODO(benjaminwagner): Figure out how to compile with EGL.
benjaminwagner86ea33e2015-10-26 10:46:25 -0700308 "src/ports/**/*.cpp",
309 "src/ports/**/*.h",
310 ],
311 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800312 "src/ports/*CG*",
mtklein3f193a92016-03-10 08:52:05 -0800313 "src/ports/*FontConfig*",
msarettfc0b6d12016-03-17 13:50:17 -0700314 "src/ports/*WIC*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700315 "src/ports/*chromium*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700316 "src/ports/*fontconfig*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700317 "src/ports/*mac*",
318 "src/ports/*mozalloc*",
319 "src/ports/*nacl*",
320 "src/ports/*win*",
321 "src/ports/SkDebug_stdio.cpp",
322 "src/ports/SkFontMgr_custom_directory_factory.cpp",
323 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700324 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700325 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500326 "src/ports/SkGlobalInitialization_none.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700327 "src/ports/SkImageGenerator_none.cpp",
328 "src/ports/SkTLS_none.cpp",
329 ],
330)
331
iroth8b99ef42015-11-02 11:11:21 -0800332# Platform-dependent SRCS for google3-default iOS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800333BASE_SRCS_IOS = struct(
334 include = [
iroth5f0de062016-02-17 12:47:27 -0800335 "src/gpu/gl/GrGLDefaultInterface_native.cpp",
336 "src/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800337 "src/ports/**/*.cpp",
338 "src/ports/**/*.h",
irothab669de2016-02-16 19:17:01 -0800339 "src/utils/mac/*.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800340 ],
341 exclude = [
mtklein3f193a92016-03-10 08:52:05 -0800342 "src/ports/*FontConfig*",
343 "src/ports/*FreeType*",
msarettfc0b6d12016-03-17 13:50:17 -0700344 "src/ports/*WIC*",
iroth8b99ef42015-11-02 11:11:21 -0800345 "src/ports/*android*",
346 "src/ports/*chromium*",
347 "src/ports/*fontconfig*",
iroth8b99ef42015-11-02 11:11:21 -0800348 "src/ports/*mozalloc*",
349 "src/ports/*nacl*",
350 "src/ports/*win*",
iroth8b99ef42015-11-02 11:11:21 -0800351 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500352 "src/ports/SkFontMgr_custom_directory.cpp",
353 "src/ports/SkFontMgr_custom_embedded.cpp",
354 "src/ports/SkFontMgr_custom_empty.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800355 "src/ports/SkFontMgr_custom_directory_factory.cpp",
356 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700357 "src/ports/SkFontMgr_custom_empty_factory.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800358 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500359 "src/ports/SkGlobalInitialization_none.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800360 "src/ports/SkImageGenerator_none.cpp",
361 "src/ports/SkTLS_none.cpp",
362 ],
363)
364
benjaminwagner56f6d062016-01-13 10:45:19 -0800365################################################################################
Ben Wagnerdea74282017-03-16 19:15:09 -0400366## skia_srcs()
benjaminwagner56f6d062016-01-13 10:45:19 -0800367################################################################################
Ben Wagner9eca72b2017-10-17 10:57:34 -0400368def skia_srcs(os_conditions):
Ben Wagnerdea74282017-03-16 19:15:09 -0400369 """Sources to be compiled into the skia library."""
Ben Wagner9eca72b2017-10-17 10:57:34 -0400370 return skia_glob(BASE_SRCS_ALL) + skia_select(
371 os_conditions,
372 [
373 skia_glob(BASE_SRCS_UNIX),
374 skia_glob(BASE_SRCS_ANDROID),
375 skia_glob(BASE_SRCS_IOS),
376 ],
377 )
benjaminwagner39e7aa42015-11-18 13:26:10 -0800378
benjaminwagner56f6d062016-01-13 10:45:19 -0800379################################################################################
380## INCLUDES
381################################################################################
benjaminwagner39e7aa42015-11-18 13:26:10 -0800382
benjaminwagner787ca872015-08-17 12:58:10 -0700383# Includes needed by Skia implementation. Not public includes.
384INCLUDES = [
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800385 "include/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700386 "include/c",
robertphillips188d44c2016-02-01 04:54:14 -0800387 "include/client/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700388 "include/codec",
389 "include/config",
390 "include/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700391 "include/effects",
Matt Sarettd7093c22017-05-09 15:28:32 -0400392 "include/encode",
benjaminwagner787ca872015-08-17 12:58:10 -0700393 "include/gpu",
394 "include/images",
395 "include/pathops",
benjaminwagner787ca872015-08-17 12:58:10 -0700396 "include/pipe",
397 "include/ports",
398 "include/private",
399 "include/utils",
iroth8b99ef42015-11-02 11:11:21 -0800400 "include/utils/mac",
401 "include/utils/win",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700402 "include/svg",
benjaminwagner787ca872015-08-17 12:58:10 -0700403 "include/xml",
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800404 "src/codec",
benjaminwagner787ca872015-08-17 12:58:10 -0700405 "src/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700406 "src/gpu",
407 "src/image",
Mike Klein135a1b12017-08-15 13:13:59 -0400408 "src/images",
benjaminwagner787ca872015-08-17 12:58:10 -0700409 "src/lazy",
410 "src/opts",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800411 "src/ports",
benjaminwagner787ca872015-08-17 12:58:10 -0700412 "src/pdf",
benjaminwagner787ca872015-08-17 12:58:10 -0700413 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400414 "src/shaders",
benjaminwagnerc8962512016-09-30 12:06:27 -0700415 "src/sksl",
benjaminwagner787ca872015-08-17 12:58:10 -0700416 "src/utils",
417 "third_party/etc1",
Ben Wagnerd0a3b062016-10-24 14:11:12 -0400418 "third_party/gif",
benjaminwagner56f6d062016-01-13 10:45:19 -0800419]
benjaminwagner787ca872015-08-17 12:58:10 -0700420
benjaminwagner56f6d062016-01-13 10:45:19 -0800421################################################################################
422## DM_SRCS
423################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700424
benjaminwagner56f6d062016-01-13 10:45:19 -0800425DM_SRCS_ALL = struct(
426 include = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700427 "dm/*.cpp",
428 "dm/*.h",
429 "gm/*.c",
430 "gm/*.cpp",
431 "gm/*.h",
432 "tests/*.cpp",
433 "tests/*.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700434 "tools/BigPathBench.inc",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700435 "tools/CrashHandler.cpp",
436 "tools/CrashHandler.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700437 "tools/ProcStats.cpp",
438 "tools/ProcStats.h",
439 "tools/Resources.cpp",
440 "tools/Resources.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700441 "tools/SkJSONCPP.h",
442 "tools/UrlDataManager.cpp",
443 "tools/UrlDataManager.h",
444 "tools/debugger/*.cpp",
445 "tools/debugger/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700446 "tools/flags/*.cpp",
447 "tools/flags/*.h",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700448 "tools/gpu/**/*.cpp",
449 "tools/gpu/**/*.h",
brianosman6d3119c2016-04-19 19:41:54 -0700450 "tools/picture_utils.cpp",
benjaminwagner99fb6702016-07-28 15:12:21 -0700451 "tools/picture_utils.h",
mtkleine1fc4522016-02-09 12:32:52 -0800452 "tools/random_parse_path.cpp",
453 "tools/random_parse_path.h",
benjaminwagner32885142015-10-24 07:55:31 -0700454 "tools/sk_tool_utils.cpp",
455 "tools/sk_tool_utils.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700456 "tools/sk_tool_utils_flags.h",
benjaminwagner32885142015-10-24 07:55:31 -0700457 "tools/sk_tool_utils_font.cpp",
benjaminwagner99fb6702016-07-28 15:12:21 -0700458 "tools/test_font_monospace.inc",
459 "tools/test_font_sans_serif.inc",
460 "tools/test_font_serif.inc",
461 "tools/test_font_index.inc",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700462 "tools/timer/*.cpp",
463 "tools/timer/*.h",
Brian Salomon40d01192017-07-19 13:05:11 -0400464 "tools/trace/*.cpp",
465 "tools/trace/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700466 ],
467 exclude = [
benjaminwagner86ea33e2015-10-26 10:46:25 -0700468 "tests/FontMgrAndroidParserTest.cpp", # Android-only.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700469 "tests/skia_test.cpp", # Old main.
470 "tests/SkpSkGrTest.cpp", # Alternate main.
benjaminwagner921e48b2016-07-15 11:27:27 -0700471 "tests/SVGDeviceTest.cpp",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700472 "tools/gpu/gl/angle/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700473 "tools/gpu/gl/egl/*",
474 "tools/gpu/gl/glx/*",
475 "tools/gpu/gl/iOS/*",
476 "tools/gpu/gl/mac/*",
477 "tools/gpu/gl/mesa/*",
478 "tools/gpu/gl/win/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700479 "tools/timer/SysTimer_mach.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700480 "tools/timer/SysTimer_windows.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700481 ],
482)
483
Ben Wagnerdea74282017-03-16 19:15:09 -0400484################################################################################
485## dm_srcs()
486################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700487
Ben Wagner9eca72b2017-10-17 10:57:34 -0400488def dm_srcs(os_conditions):
Ben Wagnerdea74282017-03-16 19:15:09 -0400489 """Sources for the dm binary for the specified os."""
Ben Wagner9eca72b2017-10-17 10:57:34 -0400490 return skia_glob(DM_SRCS_ALL) + skia_select(
491 os_conditions,
492 [
493 [],
494 ["tests/FontMgrAndroidParserTest.cpp"],
495 [],
496 ],
497 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800498
499################################################################################
500## DM_INCLUDES
501################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700502
benjaminwagner6f6bef82015-10-15 08:09:44 -0700503DM_INCLUDES = [
benjaminwagnerb1fe8f62016-02-01 09:05:08 -0800504 "dm",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700505 "gm",
Mike Reed7f302c42017-02-18 14:12:08 -0500506 "experimental/svg/model",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700507 "src/codec",
Mike Reedaab8ce42017-02-18 12:57:09 -0500508 "src/core",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700509 "src/effects",
510 "src/fonts",
Hal Canarydb683012016-11-23 08:55:18 -0700511 "src/images",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700512 "src/pathops",
513 "src/pipe/utils",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700514 "src/ports",
Florin Malita5edba452017-05-30 16:39:47 -0400515 "src/shaders",
516 "src/shaders/gradients",
Mike Reedf71828f2017-02-18 09:51:33 -0500517 "src/xml",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700518 "tests",
519 "tools",
benjaminwagner99fb6702016-07-28 15:12:21 -0700520 "tools/debugger",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700521 "tools/flags",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700522 "tools/gpu",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700523 "tools/timer",
Brian Salomon40d01192017-07-19 13:05:11 -0400524 "tools/trace",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700525]
526
benjaminwagner56f6d062016-01-13 10:45:19 -0800527################################################################################
528## DM_ARGS
529################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700530
Ben Wagner59f9edb2016-11-28 15:30:37 -0500531def DM_ARGS(asan):
benjaminwagner83906ae2016-05-01 15:02:25 -0700532 source = ["tests", "gm", "image"]
Ben Wagnere2cbd042017-08-11 09:39:04 -0400533 # TODO(benjaminwagner): f16, pic-8888, serialize-8888, and tiles_rt-8888 fail.
534 config = ["565", "8888", "pdf", "srgb"]
benjaminwagner83906ae2016-05-01 15:02:25 -0700535 # TODO(mtklein): maybe investigate why these fail?
536 match = [
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400537 "~^FontHostStream$$",
538 "~^FontMgr$$",
539 "~^PaintBreakText$$",
540 "~^RecordDraw_TextBounds$$",
benjaminwagner83906ae2016-05-01 15:02:25 -0700541 ]
542 if asan:
Ben Wagner59f9edb2016-11-28 15:30:37 -0500543 # The ASAN we use with Bazel has some strict checks, so omit tests that
544 # trigger them.
Ben Wagner54b22132017-10-17 18:19:37 -0400545 # All of the following are due to
546 # https://bugs.chromium.org/p/skia/issues/detail?id=7052
benjaminwagner83906ae2016-05-01 15:02:25 -0700547 match += [
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400548 "~^clippedcubic2$$",
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400549 "~^PathOpsCubicIntersection$$",
550 "~^PathOpsCubicLineIntersection$$",
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400551 "~^PathOpsOpCubicsThreaded$$",
552 "~^PathOpsOpLoopsThreaded$$",
benjaminwagner56f6d062016-01-13 10:45:19 -0800553 ]
Ben Wagner59f9edb2016-11-28 15:30:37 -0500554 return ["--src"] + source + ["--config"] + config + ["--match"] + match
benjaminwagner56f6d062016-01-13 10:45:19 -0800555
556################################################################################
557## COPTS
558################################################################################
iroth8b99ef42015-11-02 11:11:21 -0800559
Ben Wagner9eca72b2017-10-17 10:57:34 -0400560def base_copts(os_conditions):
561 return skia_select(
562 os_conditions,
563 [
564 # UNIX
565 [
566 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
567 # Internal use of deprecated methods. :(
568 "-Wno-deprecated-declarations",
569 ],
570 # ANDROID
571 [
572 # 'GrResourceCache' declared with greater visibility than the
573 # type of its field 'GrResourceCache::fPurgeableQueue'... bogus.
574 "-Wno-error=attributes",
575 ],
576 # IOS
577 [],
578 ],
579 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800580
581################################################################################
582## DEFINES
583################################################################################
584
Ben Wagner9eca72b2017-10-17 10:57:34 -0400585def base_defines(os_conditions):
586 return [
587 # Chrome DEFINES.
588 "SK_USE_FREETYPE_EMBOLDEN",
589 # Turn on a few Google3-specific build fixes.
590 "GOOGLE3",
591 # Required for building dm.
592 "GR_TEST_UTILS",
593 # Staging flags for API changes
594 # Should remove after we update golden images
595 "SK_WEBP_ENCODER_USE_DEFAULT_METHOD",
596 # Experiment to diagnose image diffs in Google3
597 "SK_JUMPER_DISABLE_8BIT",
598 # JPEG is in codec_limited
599 "SK_HAS_JPEG_LIBRARY",
600 ] + skia_select(
601 os_conditions,
602 [
603 # UNIX
604 [
605 "PNG_SKIP_SETJMP_CHECK",
606 "SK_BUILD_FOR_UNIX",
607 "SK_SAMPLES_FOR_X",
608 "SK_PDF_USE_SFNTLY",
609 "SK_CODEC_DECODES_RAW",
610 "SK_HAS_PNG_LIBRARY",
611 "SK_HAS_WEBP_LIBRARY",
612 ],
613 # ANDROID
614 [
615 "SK_BUILD_FOR_ANDROID",
616 "SK_CODEC_DECODES_RAW",
617 "SK_HAS_PNG_LIBRARY",
618 "SK_HAS_WEBP_LIBRARY",
619 ],
620 # IOS
621 [
622 "SK_BUILD_FOR_IOS",
623 "SK_BUILD_NO_OPTS",
624 "SKNX_NO_SIMD",
625 ],
626 ],
627 )
benjaminwagner787ca872015-08-17 12:58:10 -0700628
benjaminwagner56f6d062016-01-13 10:45:19 -0800629################################################################################
630## LINKOPTS
631################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700632
Ben Wagner9eca72b2017-10-17 10:57:34 -0400633def base_linkopts(os_conditions):
634 return [
635 "-ldl",
636 ] + skia_select(
637 os_conditions,
638 [
639 # UNIX
640 [],
641 # ANDROID
642 [
643 "-lEGL",
644 ],
645 # IOS
646 [
647 "-framework CoreFoundation",
648 "-framework CoreGraphics",
649 "-framework CoreText",
650 "-framework ImageIO",
651 "-framework MobileCoreServices",
652 ],
653 ]
654 )