blob: 4eaecf8f78c8f61f8dcdca7623e85d8cf4831588 [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():
Ben Wagnerb7e80112018-01-24 18:18:12 -050058 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():
65 return native.glob(["include/**/*.h"],
66 exclude=[
67 "include/private/**/*",
68 "include/views/**/*", # Not used.
69 ])
70
71################################################################################
72## skia_opts_srcs()
73################################################################################
74# Intel
75SKIA_OPTS_SSE2 = "SSE2"
76
77SKIA_OPTS_SSSE3 = "SSSE3"
78
79SKIA_OPTS_SSE41 = "SSE41"
80
81SKIA_OPTS_SSE42 = "SSE42"
82
83SKIA_OPTS_AVX = "AVX"
84
85# Arm
86SKIA_OPTS_NEON = "NEON"
87
88SKIA_OPTS_CRC32 = "CRC32" # arm64
89
90def opts_srcs(opts):
91 if opts == SKIA_OPTS_SSE2:
92 return native.glob([
93 "src/opts/*_SSE2.cpp",
94 "src/opts/*_sse2.cpp", # No matches currently.
95 ])
96 elif opts == SKIA_OPTS_SSSE3:
97 return native.glob([
98 "src/opts/*_SSSE3.cpp",
99 "src/opts/*_ssse3.cpp",
100 ])
101 elif opts == SKIA_OPTS_SSE41:
102 return native.glob([
103 "src/opts/*_sse41.cpp",
104 ])
105 elif opts == SKIA_OPTS_SSE42:
106 return native.glob([
107 "src/opts/*_sse42.cpp",
108 ])
109 elif opts == SKIA_OPTS_AVX:
110 return native.glob([
111 "src/opts/*_avx.cpp",
112 ])
113 elif opts == SKIA_OPTS_NEON:
114 return native.glob([
115 "src/opts/*_neon.cpp",
116 ])
117 elif opts == SKIA_OPTS_CRC32:
118 return native.glob([
119 "src/opts/*_crc32.cpp",
120 ])
121 else:
122 fail("skia_opts_srcs parameter 'opts' must be one of SKIA_OPTS_*.")
123
124def opts_cflags(opts):
125 if opts == SKIA_OPTS_SSE2:
126 return ["-msse2"]
127 elif opts == SKIA_OPTS_SSSE3:
128 return ["-mssse3"]
129 elif opts == SKIA_OPTS_SSE41:
130 return ["-msse4.1"]
131 elif opts == SKIA_OPTS_SSE42:
132 return ["-msse4.2"]
133 elif opts == SKIA_OPTS_AVX:
134 return ["-mavx"]
135 elif opts == SKIA_OPTS_NEON:
136 return ["-mfpu=neon"]
137 elif opts == SKIA_OPTS_CRC32:
Mike Kleinc29bb572017-10-24 11:40:41 -0400138 # NDK r11's Clang (3.8) doesn't pass along this -march setting correctly to an external
139 # assembler, so we do it manually with -Wa. This is just a bug, fixed in later Clangs.
140 return ["-march=armv8-a+crc", "-Wa,-march=armv8-a+crc"]
Ben Wagner9eca72b2017-10-17 10:57:34 -0400141 else:
142 return []
143
144SKIA_CPU_ARM = "ARM"
145
146SKIA_CPU_ARM64 = "ARM64"
147
148SKIA_CPU_X86 = "X86"
149
150SKIA_CPU_OTHER = "OTHER"
151
152def opts_rest_srcs(cpu):
153 srcs = []
154 if cpu == SKIA_CPU_ARM or cpu == SKIA_CPU_ARM64:
155 srcs += native.glob([
156 "src/opts/*_arm.cpp",
157 "src/opts/SkBitmapProcState_opts_none.cpp",
158 ])
159 if cpu == SKIA_CPU_ARM64:
160 # NEON doesn't need special flags to compile on ARM64.
161 srcs += native.glob([
162 "src/opts/*_neon.cpp",
163 ])
164 elif cpu == SKIA_CPU_X86:
165 srcs += native.glob([
166 "src/opts/*_x86.cpp",
167 ])
168 elif cpu == SKIA_CPU_OTHER:
169 srcs += native.glob([
170 "src/opts/*_none.cpp",
171 ])
172 else:
173 fail("opts_rest_srcs parameter 'cpu' must be one of " +
174 "SKIA_CPU_{ARM,ARM64,X86,OTHER}.")
175 return srcs
176
177def skia_opts_deps(cpu):
178 res = [":opts_rest"]
179
180 if cpu == SKIA_CPU_ARM:
181 res += [":opts_neon"]
182
183 if cpu == SKIA_CPU_ARM64:
184 res += [":opts_crc32"]
Mike Kleinc29bb572017-10-24 11:40:41 -0400185
Ben Wagner9eca72b2017-10-17 10:57:34 -0400186 if cpu == SKIA_CPU_X86:
187 res += [
188 ":opts_sse2",
189 ":opts_ssse3",
190 ":opts_sse41",
191 ":opts_sse42",
192 ":opts_avx",
193 ]
194
195 return res
196
197################################################################################
benjaminwagner56f6d062016-01-13 10:45:19 -0800198## BASE_SRCS
199################################################################################
benjaminwagner787ca872015-08-17 12:58:10 -0700200
benjaminwagner39e7aa42015-11-18 13:26:10 -0800201# All platform-independent SRCS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800202BASE_SRCS_ALL = struct(
203 include = [
Ben Wagnerdea74282017-03-16 19:15:09 -0400204 "include/private/**/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700205 "src/**/*.h",
206 "src/**/*.cpp",
Ben Wagnerdea74282017-03-16 19:15:09 -0400207 "src/**/*.inc",
Mike Klein0a64e322017-03-29 17:32:50 -0400208 "src/jumper/SkJumper_generated.S",
benjaminwagner787ca872015-08-17 12:58:10 -0700209
mtkleind55d13a2015-08-18 08:51:49 -0700210 # Third Party
Mike Klein5bcef352018-01-26 22:41:26 +0000211 "third_party/etc1/*.cpp",
212 "third_party/etc1/*.h",
Ben Wagnerd0a3b062016-10-24 14:11:12 -0400213 "third_party/gif/*.cpp",
214 "third_party/gif/*.h",
benjaminwagner787ca872015-08-17 12:58:10 -0700215 ],
Ben Wagnerdea74282017-03-16 19:15:09 -0400216 exclude = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700217 # Exclude platform-dependent files.
iroth76a12252016-01-07 07:11:39 -0800218 "src/codec/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700219 "src/device/xps/*", # Windows-only. Move to ports?
220 "src/doc/*_XPS.cpp", # Windows-only. Move to ports?
221 "src/gpu/gl/android/*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700222 "src/gpu/gl/egl/*",
benjaminwagneraf3b35e2016-03-28 13:27:28 -0700223 "src/gpu/gl/glfw/*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700224 "src/gpu/gl/glx/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700225 "src/gpu/gl/iOS/*",
226 "src/gpu/gl/mac/*",
227 "src/gpu/gl/win/*",
228 "src/opts/**/*",
229 "src/ports/**/*",
230 "src/utils/android/**/*",
231 "src/utils/mac/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700232 "src/utils/win/**/*",
233 "src/views/sdl/*",
234 "src/views/win/*",
235 "src/views/unix/*",
236
237 # Exclude multiple definitions.
238 # TODO(mtklein): Move to opts?
benjaminwagnerca26a182016-03-14 15:21:12 -0700239 "src/pdf/SkDocument_PDF_None.cpp", # We use src/pdf/SkPDFDocument.cpp.
Brian Salomon3d6801e2017-12-11 10:06:31 -0500240 "src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700241
242 # Exclude files that don't compile with the current DEFINES.
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/*",
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500260
261 # Atlas text
262 "src/atlastext/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700263 ],
264)
265
Ben Wagner9eca72b2017-10-17 10:57:34 -0400266def codec_srcs(limited):
267 """Sources for the codecs. Excludes Ico, Webp, Png, and Raw if limited."""
268 exclude = []
269 if limited:
270 exclude += [
271 "src/codec/*Ico*.cpp",
272 "src/codec/*Webp*.cpp",
273 "src/codec/*Png*",
274 "src/codec/*Raw*.cpp",
275 ]
276 return native.glob(["src/codec/*.cpp"], exclude = exclude)
277
benjaminwagner6f6bef82015-10-15 08:09:44 -0700278# Platform-dependent SRCS for google3-default platform.
benjaminwagner56f6d062016-01-13 10:45:19 -0800279BASE_SRCS_UNIX = struct(
280 include = [
Brian Salomonb3ce76e2017-12-11 15:21:39 -0500281 "src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700282 "src/ports/**/*.cpp",
283 "src/ports/**/*.h",
284 ],
285 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800286 "src/ports/*CG*",
msarettfc0b6d12016-03-17 13:50:17 -0700287 "src/ports/*WIC*",
mtklein3f193a92016-03-10 08:52:05 -0800288 "src/ports/*android*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700289 "src/ports/*chromium*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700290 "src/ports/*mac*",
291 "src/ports/*mozalloc*",
292 "src/ports/*nacl*",
293 "src/ports/*win*",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800294 "src/ports/SkFontMgr_custom_directory_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700295 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700296 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700297 "src/ports/SkFontMgr_empty_factory.cpp",
benjaminwagner404816e2015-12-03 05:04:03 -0800298 "src/ports/SkFontMgr_fontconfig.cpp",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800299 "src/ports/SkFontMgr_fontconfig_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500300 "src/ports/SkGlobalInitialization_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700301 "src/ports/SkImageGenerator_none.cpp",
302 "src/ports/SkTLS_none.cpp",
mtkleind55d13a2015-08-18 08:51:49 -0700303 ],
304)
305
benjaminwagner86ea33e2015-10-26 10:46:25 -0700306# Platform-dependent SRCS for google3-default Android.
benjaminwagner56f6d062016-01-13 10:45:19 -0800307BASE_SRCS_ANDROID = struct(
308 include = [
Brian Salomonb3ce76e2017-12-11 15:21:39 -0500309 "src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700310 # TODO(benjaminwagner): Figure out how to compile with EGL.
benjaminwagner86ea33e2015-10-26 10:46:25 -0700311 "src/ports/**/*.cpp",
312 "src/ports/**/*.h",
313 ],
314 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800315 "src/ports/*CG*",
mtklein3f193a92016-03-10 08:52:05 -0800316 "src/ports/*FontConfig*",
msarettfc0b6d12016-03-17 13:50:17 -0700317 "src/ports/*WIC*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700318 "src/ports/*chromium*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700319 "src/ports/*fontconfig*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700320 "src/ports/*mac*",
321 "src/ports/*mozalloc*",
322 "src/ports/*nacl*",
323 "src/ports/*win*",
324 "src/ports/SkDebug_stdio.cpp",
325 "src/ports/SkFontMgr_custom_directory_factory.cpp",
326 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700327 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700328 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500329 "src/ports/SkGlobalInitialization_none.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700330 "src/ports/SkImageGenerator_none.cpp",
331 "src/ports/SkTLS_none.cpp",
332 ],
333)
334
iroth8b99ef42015-11-02 11:11:21 -0800335# Platform-dependent SRCS for google3-default iOS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800336BASE_SRCS_IOS = struct(
337 include = [
Brian Salomon3d6801e2017-12-11 10:06:31 -0500338 "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800339 "src/ports/**/*.cpp",
340 "src/ports/**/*.h",
irothab669de2016-02-16 19:17:01 -0800341 "src/utils/mac/*.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800342 ],
343 exclude = [
mtklein3f193a92016-03-10 08:52:05 -0800344 "src/ports/*FontConfig*",
345 "src/ports/*FreeType*",
msarettfc0b6d12016-03-17 13:50:17 -0700346 "src/ports/*WIC*",
iroth8b99ef42015-11-02 11:11:21 -0800347 "src/ports/*android*",
348 "src/ports/*chromium*",
349 "src/ports/*fontconfig*",
iroth8b99ef42015-11-02 11:11:21 -0800350 "src/ports/*mozalloc*",
351 "src/ports/*nacl*",
352 "src/ports/*win*",
iroth8b99ef42015-11-02 11:11:21 -0800353 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500354 "src/ports/SkFontMgr_custom_directory.cpp",
355 "src/ports/SkFontMgr_custom_embedded.cpp",
356 "src/ports/SkFontMgr_custom_empty.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800357 "src/ports/SkFontMgr_custom_directory_factory.cpp",
358 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700359 "src/ports/SkFontMgr_custom_empty_factory.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800360 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500361 "src/ports/SkGlobalInitialization_none.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800362 "src/ports/SkImageGenerator_none.cpp",
363 "src/ports/SkTLS_none.cpp",
364 ],
365)
366
benjaminwagner56f6d062016-01-13 10:45:19 -0800367################################################################################
Ben Wagnerdea74282017-03-16 19:15:09 -0400368## skia_srcs()
benjaminwagner56f6d062016-01-13 10:45:19 -0800369################################################################################
Ben Wagner9eca72b2017-10-17 10:57:34 -0400370def skia_srcs(os_conditions):
Ben Wagnerdea74282017-03-16 19:15:09 -0400371 """Sources to be compiled into the skia library."""
Ben Wagner9eca72b2017-10-17 10:57:34 -0400372 return skia_glob(BASE_SRCS_ALL) + skia_select(
373 os_conditions,
374 [
375 skia_glob(BASE_SRCS_UNIX),
376 skia_glob(BASE_SRCS_ANDROID),
377 skia_glob(BASE_SRCS_IOS),
378 ],
379 )
benjaminwagner39e7aa42015-11-18 13:26:10 -0800380
benjaminwagner56f6d062016-01-13 10:45:19 -0800381################################################################################
382## INCLUDES
383################################################################################
benjaminwagner39e7aa42015-11-18 13:26:10 -0800384
benjaminwagner787ca872015-08-17 12:58:10 -0700385# Includes needed by Skia implementation. Not public includes.
386INCLUDES = [
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800387 "include/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700388 "include/c",
robertphillips188d44c2016-02-01 04:54:14 -0800389 "include/client/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700390 "include/codec",
391 "include/config",
392 "include/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700393 "include/effects",
Matt Sarettd7093c22017-05-09 15:28:32 -0400394 "include/encode",
benjaminwagner787ca872015-08-17 12:58:10 -0700395 "include/gpu",
396 "include/images",
397 "include/pathops",
benjaminwagner787ca872015-08-17 12:58:10 -0700398 "include/pipe",
399 "include/ports",
400 "include/private",
401 "include/utils",
iroth8b99ef42015-11-02 11:11:21 -0800402 "include/utils/mac",
403 "include/utils/win",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700404 "include/svg",
benjaminwagner787ca872015-08-17 12:58:10 -0700405 "include/xml",
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800406 "src/codec",
benjaminwagner787ca872015-08-17 12:58:10 -0700407 "src/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700408 "src/gpu",
409 "src/image",
Mike Klein135a1b12017-08-15 13:13:59 -0400410 "src/images",
benjaminwagner787ca872015-08-17 12:58:10 -0700411 "src/lazy",
412 "src/opts",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800413 "src/ports",
benjaminwagner787ca872015-08-17 12:58:10 -0700414 "src/pdf",
benjaminwagner787ca872015-08-17 12:58:10 -0700415 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400416 "src/shaders",
benjaminwagnerc8962512016-09-30 12:06:27 -0700417 "src/sksl",
benjaminwagner787ca872015-08-17 12:58:10 -0700418 "src/utils",
Mike Klein5bcef352018-01-26 22:41:26 +0000419 "third_party/etc1",
Ben Wagnerd0a3b062016-10-24 14:11:12 -0400420 "third_party/gif",
benjaminwagner56f6d062016-01-13 10:45:19 -0800421]
benjaminwagner787ca872015-08-17 12:58:10 -0700422
benjaminwagner56f6d062016-01-13 10:45:19 -0800423################################################################################
424## DM_SRCS
425################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700426
benjaminwagner56f6d062016-01-13 10:45:19 -0800427DM_SRCS_ALL = struct(
428 include = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700429 "dm/*.cpp",
430 "dm/*.h",
431 "gm/*.c",
432 "gm/*.cpp",
433 "gm/*.h",
434 "tests/*.cpp",
435 "tests/*.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700436 "tools/BigPathBench.inc",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700437 "tools/CrashHandler.cpp",
438 "tools/CrashHandler.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700439 "tools/ProcStats.cpp",
440 "tools/ProcStats.h",
441 "tools/Resources.cpp",
442 "tools/Resources.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700443 "tools/SkJSONCPP.h",
Mike Klein10d66cc2017-11-10 11:33:43 -0500444 "tools/SkRandomScalerContext.cpp",
445 "tools/SkRandomScalerContext.h",
446 "tools/SkTestScalerContext.cpp",
447 "tools/SkTestScalerContext.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700448 "tools/UrlDataManager.cpp",
449 "tools/UrlDataManager.h",
450 "tools/debugger/*.cpp",
451 "tools/debugger/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700452 "tools/flags/*.cpp",
453 "tools/flags/*.h",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700454 "tools/gpu/**/*.cpp",
455 "tools/gpu/**/*.h",
brianosman6d3119c2016-04-19 19:41:54 -0700456 "tools/picture_utils.cpp",
benjaminwagner99fb6702016-07-28 15:12:21 -0700457 "tools/picture_utils.h",
mtkleine1fc4522016-02-09 12:32:52 -0800458 "tools/random_parse_path.cpp",
459 "tools/random_parse_path.h",
benjaminwagner32885142015-10-24 07:55:31 -0700460 "tools/sk_tool_utils.cpp",
461 "tools/sk_tool_utils.h",
462 "tools/sk_tool_utils_font.cpp",
benjaminwagner99fb6702016-07-28 15:12:21 -0700463 "tools/test_font_monospace.inc",
464 "tools/test_font_sans_serif.inc",
465 "tools/test_font_serif.inc",
466 "tools/test_font_index.inc",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700467 "tools/timer/*.cpp",
468 "tools/timer/*.h",
Brian Salomon40d01192017-07-19 13:05:11 -0400469 "tools/trace/*.cpp",
470 "tools/trace/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700471 ],
472 exclude = [
benjaminwagner86ea33e2015-10-26 10:46:25 -0700473 "tests/FontMgrAndroidParserTest.cpp", # Android-only.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700474 "tests/skia_test.cpp", # Old main.
475 "tests/SkpSkGrTest.cpp", # Alternate main.
benjaminwagner921e48b2016-07-15 11:27:27 -0700476 "tests/SVGDeviceTest.cpp",
Brian Salomonf9ec4702017-11-19 14:46:36 -0500477 "tools/gpu/atlastext/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700478 "tools/gpu/gl/angle/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700479 "tools/gpu/gl/egl/*",
480 "tools/gpu/gl/glx/*",
481 "tools/gpu/gl/iOS/*",
482 "tools/gpu/gl/mac/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700483 "tools/gpu/gl/win/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700484 "tools/timer/SysTimer_mach.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700485 "tools/timer/SysTimer_windows.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700486 ],
487)
488
Ben Wagnerdea74282017-03-16 19:15:09 -0400489################################################################################
490## dm_srcs()
491################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700492
Ben Wagner9eca72b2017-10-17 10:57:34 -0400493def dm_srcs(os_conditions):
Ben Wagnerdea74282017-03-16 19:15:09 -0400494 """Sources for the dm binary for the specified os."""
Ben Wagner9eca72b2017-10-17 10:57:34 -0400495 return skia_glob(DM_SRCS_ALL) + skia_select(
496 os_conditions,
497 [
498 [],
499 ["tests/FontMgrAndroidParserTest.cpp"],
500 [],
501 ],
502 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800503
504################################################################################
505## DM_INCLUDES
506################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700507
benjaminwagner6f6bef82015-10-15 08:09:44 -0700508DM_INCLUDES = [
benjaminwagnerb1fe8f62016-02-01 09:05:08 -0800509 "dm",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700510 "gm",
Mike Reed7f302c42017-02-18 14:12:08 -0500511 "experimental/svg/model",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700512 "src/codec",
Mike Reedaab8ce42017-02-18 12:57:09 -0500513 "src/core",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700514 "src/effects",
515 "src/fonts",
Hal Canarydb683012016-11-23 08:55:18 -0700516 "src/images",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700517 "src/pathops",
518 "src/pipe/utils",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700519 "src/ports",
Florin Malita5edba452017-05-30 16:39:47 -0400520 "src/shaders",
521 "src/shaders/gradients",
Mike Reedf71828f2017-02-18 09:51:33 -0500522 "src/xml",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700523 "tests",
524 "tools",
benjaminwagner99fb6702016-07-28 15:12:21 -0700525 "tools/debugger",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700526 "tools/flags",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700527 "tools/gpu",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700528 "tools/timer",
Brian Salomon40d01192017-07-19 13:05:11 -0400529 "tools/trace",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700530]
531
benjaminwagner56f6d062016-01-13 10:45:19 -0800532################################################################################
533## DM_ARGS
534################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700535
Ben Wagner59f9edb2016-11-28 15:30:37 -0500536def DM_ARGS(asan):
benjaminwagner83906ae2016-05-01 15:02:25 -0700537 source = ["tests", "gm", "image"]
Ben Wagnere2cbd042017-08-11 09:39:04 -0400538 # TODO(benjaminwagner): f16, pic-8888, serialize-8888, and tiles_rt-8888 fail.
539 config = ["565", "8888", "pdf", "srgb"]
benjaminwagner83906ae2016-05-01 15:02:25 -0700540 # TODO(mtklein): maybe investigate why these fail?
541 match = [
Ben Wagner56e9d4a2017-09-12 19:33:38 -0400542 "~^FontHostStream$$",
543 "~^FontMgr$$",
544 "~^PaintBreakText$$",
545 "~^RecordDraw_TextBounds$$",
benjaminwagner83906ae2016-05-01 15:02:25 -0700546 ]
Ben Wagner59f9edb2016-11-28 15:30:37 -0500547 return ["--src"] + source + ["--config"] + config + ["--match"] + match
benjaminwagner56f6d062016-01-13 10:45:19 -0800548
549################################################################################
550## COPTS
551################################################################################
iroth8b99ef42015-11-02 11:11:21 -0800552
Ben Wagner9eca72b2017-10-17 10:57:34 -0400553def base_copts(os_conditions):
554 return skia_select(
555 os_conditions,
556 [
557 # UNIX
558 [
559 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
560 # Internal use of deprecated methods. :(
561 "-Wno-deprecated-declarations",
562 ],
563 # ANDROID
564 [
565 # 'GrResourceCache' declared with greater visibility than the
566 # type of its field 'GrResourceCache::fPurgeableQueue'... bogus.
567 "-Wno-error=attributes",
568 ],
569 # IOS
570 [],
571 ],
572 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800573
574################################################################################
575## DEFINES
576################################################################################
577
Ben Wagner9eca72b2017-10-17 10:57:34 -0400578def base_defines(os_conditions):
579 return [
580 # Chrome DEFINES.
581 "SK_USE_FREETYPE_EMBOLDEN",
582 # Turn on a few Google3-specific build fixes.
Mike Klein6613cc52017-12-19 09:09:33 -0500583 "SK_BUILD_FOR_GOOGLE3",
Ben Wagner9eca72b2017-10-17 10:57:34 -0400584 # Required for building dm.
585 "GR_TEST_UTILS",
586 # Staging flags for API changes
587 # Should remove after we update golden images
588 "SK_WEBP_ENCODER_USE_DEFAULT_METHOD",
589 # Experiment to diagnose image diffs in Google3
590 "SK_JUMPER_DISABLE_8BIT",
591 # JPEG is in codec_limited
592 "SK_HAS_JPEG_LIBRARY",
593 ] + skia_select(
594 os_conditions,
595 [
596 # UNIX
597 [
598 "PNG_SKIP_SETJMP_CHECK",
599 "SK_BUILD_FOR_UNIX",
600 "SK_SAMPLES_FOR_X",
601 "SK_PDF_USE_SFNTLY",
602 "SK_CODEC_DECODES_RAW",
603 "SK_HAS_PNG_LIBRARY",
604 "SK_HAS_WEBP_LIBRARY",
605 ],
606 # ANDROID
607 [
608 "SK_BUILD_FOR_ANDROID",
609 "SK_CODEC_DECODES_RAW",
610 "SK_HAS_PNG_LIBRARY",
611 "SK_HAS_WEBP_LIBRARY",
612 ],
613 # IOS
614 [
615 "SK_BUILD_FOR_IOS",
616 "SK_BUILD_NO_OPTS",
617 "SKNX_NO_SIMD",
618 ],
619 ],
620 )
benjaminwagner787ca872015-08-17 12:58:10 -0700621
benjaminwagner56f6d062016-01-13 10:45:19 -0800622################################################################################
623## LINKOPTS
624################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700625
Ben Wagner9eca72b2017-10-17 10:57:34 -0400626def base_linkopts(os_conditions):
627 return [
628 "-ldl",
629 ] + skia_select(
630 os_conditions,
631 [
632 # UNIX
633 [],
634 # ANDROID
635 [
636 "-lEGL",
637 ],
638 # IOS
639 [
640 "-framework CoreFoundation",
641 "-framework CoreGraphics",
642 "-framework CoreText",
643 "-framework ImageIO",
644 "-framework MobileCoreServices",
645 ],
646 ]
647 )