blob: 2ce0abf5e5cbb2b211b05521b42a38d7481be328 [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.
243 # TODO(mtklein): Move to opts?
benjaminwagnerca26a182016-03-14 15:21:12 -0700244 "src/pdf/SkDocument_PDF_None.cpp", # We use src/pdf/SkPDFDocument.cpp.
Brian Salomon3d6801e2017-12-11 10:06:31 -0500245 "src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700246
Ben Wagner4ccf49c2018-03-26 15:46:40 -0400247 # Exclude files that don't compile everywhere.
248 "src/svg/**/*", # Depends on xml, SkJpegCodec, and SkPngCodec.
249 "src/xml/**/*", # Avoid dragging in expat when not needed.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700250
benjaminwagner39e7aa42015-11-18 13:26:10 -0800251 # Conflicting dependencies among Lua versions. See cl/107087297.
252 "src/utils/SkLua*",
253
egdaniel32119f12016-02-22 10:07:54 -0800254 # Currently exclude all vulkan specific files
255 "src/gpu/vk/*",
benjaminwagnerc8962512016-09-30 12:06:27 -0700256
257 # Defines main.
258 "src/sksl/SkSLMain.cpp",
Ethan Nicholas8d7f4ae2017-09-07 11:07:42 -0400259
260 # Only used to regenerate the lexer
261 "src/sksl/lex/*",
Brian Salomoncbcb0a12017-11-19 13:20:13 -0500262
263 # Atlas text
264 "src/atlastext/*",
Mike Klein83ee4632018-03-27 13:22:50 -0400265
Mike Kleinb056e7f2018-06-20 09:44:59 -0400266 # Compute backend not yet even hooked into Skia.
Ben Wagnerb303a422018-07-31 10:31:06 -0400267 "src/compute/**/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700268 ],
269)
270
Ben Wagner9eca72b2017-10-17 10:57:34 -0400271def codec_srcs(limited):
Ben Wagnerb303a422018-07-31 10:31:06 -0400272 """Sources for the codecs. Excludes Ico, Webp, Png, and Raw if limited."""
273 exclude = []
274 if limited:
275 exclude += [
276 "src/codec/*Ico*.cpp",
277 "src/codec/*Webp*.cpp",
278 "src/codec/*Png*",
279 "src/codec/*Raw*.cpp",
280 ]
281 return native.glob(["src/codec/*.cpp"], exclude = exclude)
Ben Wagner9eca72b2017-10-17 10:57:34 -0400282
benjaminwagner6f6bef82015-10-15 08:09:44 -0700283# Platform-dependent SRCS for google3-default platform.
benjaminwagner56f6d062016-01-13 10:45:19 -0800284BASE_SRCS_UNIX = struct(
285 include = [
Brian Salomonb3ce76e2017-12-11 15:21:39 -0500286 "src/gpu/gl/GrGLMakeNativeInterface_none.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700287 "src/ports/**/*.cpp",
288 "src/ports/**/*.h",
289 ],
290 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800291 "src/ports/*CG*",
msarettfc0b6d12016-03-17 13:50:17 -0700292 "src/ports/*WIC*",
mtklein3f193a92016-03-10 08:52:05 -0800293 "src/ports/*android*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700294 "src/ports/*chromium*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700295 "src/ports/*mac*",
296 "src/ports/*mozalloc*",
297 "src/ports/*nacl*",
298 "src/ports/*win*",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800299 "src/ports/SkFontMgr_custom_directory_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700300 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700301 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700302 "src/ports/SkFontMgr_empty_factory.cpp",
benjaminwagner404816e2015-12-03 05:04:03 -0800303 "src/ports/SkFontMgr_fontconfig.cpp",
benjaminwagner2211a7b2015-12-01 11:12:05 -0800304 "src/ports/SkFontMgr_fontconfig_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500305 "src/ports/SkGlobalInitialization_none.cpp",
Mike Klein53418da2018-06-20 09:34:05 -0400306 "src/ports/SkGlobalInitialization_none_imagefilters.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700307 "src/ports/SkImageGenerator_none.cpp",
308 "src/ports/SkTLS_none.cpp",
mtkleind55d13a2015-08-18 08:51:49 -0700309 ],
310)
311
benjaminwagner86ea33e2015-10-26 10:46:25 -0700312# Platform-dependent SRCS for google3-default Android.
benjaminwagner56f6d062016-01-13 10:45:19 -0800313BASE_SRCS_ANDROID = struct(
314 include = [
Ben Wagner773151f2018-08-17 09:28:53 -0400315 "src/gpu/gl/android/*.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700316 "src/ports/**/*.cpp",
317 "src/ports/**/*.h",
318 ],
319 exclude = [
msarett6b4985c2016-03-10 07:15:59 -0800320 "src/ports/*CG*",
mtklein3f193a92016-03-10 08:52:05 -0800321 "src/ports/*FontConfig*",
msarettfc0b6d12016-03-17 13:50:17 -0700322 "src/ports/*WIC*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700323 "src/ports/*chromium*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700324 "src/ports/*fontconfig*",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700325 "src/ports/*mac*",
326 "src/ports/*mozalloc*",
327 "src/ports/*nacl*",
328 "src/ports/*win*",
329 "src/ports/SkDebug_stdio.cpp",
330 "src/ports/SkFontMgr_custom_directory_factory.cpp",
331 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700332 "src/ports/SkFontMgr_custom_empty_factory.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700333 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500334 "src/ports/SkGlobalInitialization_none.cpp",
Mike Klein53418da2018-06-20 09:34:05 -0400335 "src/ports/SkGlobalInitialization_none_imagefilters.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700336 "src/ports/SkImageGenerator_none.cpp",
337 "src/ports/SkTLS_none.cpp",
338 ],
339)
340
iroth8b99ef42015-11-02 11:11:21 -0800341# Platform-dependent SRCS for google3-default iOS.
benjaminwagner56f6d062016-01-13 10:45:19 -0800342BASE_SRCS_IOS = struct(
343 include = [
Brian Salomon3d6801e2017-12-11 10:06:31 -0500344 "src/gpu/gl/iOS/GrGLMakeNativeInterface_iOS.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800345 "src/ports/**/*.cpp",
346 "src/ports/**/*.h",
irothab669de2016-02-16 19:17:01 -0800347 "src/utils/mac/*.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800348 ],
349 exclude = [
mtklein3f193a92016-03-10 08:52:05 -0800350 "src/ports/*FontConfig*",
351 "src/ports/*FreeType*",
msarettfc0b6d12016-03-17 13:50:17 -0700352 "src/ports/*WIC*",
iroth8b99ef42015-11-02 11:11:21 -0800353 "src/ports/*android*",
354 "src/ports/*chromium*",
355 "src/ports/*fontconfig*",
iroth8b99ef42015-11-02 11:11:21 -0800356 "src/ports/*mozalloc*",
357 "src/ports/*nacl*",
358 "src/ports/*win*",
iroth8b99ef42015-11-02 11:11:21 -0800359 "src/ports/SkFontMgr_custom.cpp",
Ben Wagner8ab590f2017-02-08 17:29:33 -0500360 "src/ports/SkFontMgr_custom_directory.cpp",
361 "src/ports/SkFontMgr_custom_embedded.cpp",
362 "src/ports/SkFontMgr_custom_empty.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800363 "src/ports/SkFontMgr_custom_directory_factory.cpp",
364 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
benjaminwagnerd9dd5812016-03-21 10:45:01 -0700365 "src/ports/SkFontMgr_custom_empty_factory.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800366 "src/ports/SkFontMgr_empty_factory.cpp",
Mike Klein4b698cb2017-02-09 15:28:53 -0500367 "src/ports/SkGlobalInitialization_none.cpp",
Mike Klein53418da2018-06-20 09:34:05 -0400368 "src/ports/SkGlobalInitialization_none_imagefilters.cpp",
iroth8b99ef42015-11-02 11:11:21 -0800369 "src/ports/SkImageGenerator_none.cpp",
370 "src/ports/SkTLS_none.cpp",
371 ],
372)
373
benjaminwagner56f6d062016-01-13 10:45:19 -0800374################################################################################
Ben Wagnerdea74282017-03-16 19:15:09 -0400375## skia_srcs()
benjaminwagner56f6d062016-01-13 10:45:19 -0800376################################################################################
Ben Wagner9eca72b2017-10-17 10:57:34 -0400377def skia_srcs(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400378 """Sources to be compiled into the skia library."""
379 return skia_glob(BASE_SRCS_ALL) + skia_select(
380 os_conditions,
381 [
382 skia_glob(BASE_SRCS_UNIX),
383 skia_glob(BASE_SRCS_ANDROID),
384 skia_glob(BASE_SRCS_IOS),
385 ],
386 )
benjaminwagner39e7aa42015-11-18 13:26:10 -0800387
benjaminwagner56f6d062016-01-13 10:45:19 -0800388################################################################################
389## INCLUDES
390################################################################################
benjaminwagner39e7aa42015-11-18 13:26:10 -0800391
benjaminwagner787ca872015-08-17 12:58:10 -0700392# Includes needed by Skia implementation. Not public includes.
393INCLUDES = [
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800394 "include/android",
benjaminwagner787ca872015-08-17 12:58:10 -0700395 "include/c",
396 "include/codec",
397 "include/config",
398 "include/core",
Ben Wagnercc62b5d2018-09-20 16:26:31 -0400399 "include/docs",
benjaminwagner787ca872015-08-17 12:58:10 -0700400 "include/effects",
Matt Sarettd7093c22017-05-09 15:28:32 -0400401 "include/encode",
benjaminwagner787ca872015-08-17 12:58:10 -0700402 "include/gpu",
benjaminwagner787ca872015-08-17 12:58:10 -0700403 "include/pathops",
benjaminwagner787ca872015-08-17 12:58:10 -0700404 "include/ports",
405 "include/private",
406 "include/utils",
iroth8b99ef42015-11-02 11:11:21 -0800407 "include/utils/mac",
benjaminwagnerfa7e1a02015-11-13 12:27:08 -0800408 "src/codec",
benjaminwagner787ca872015-08-17 12:58:10 -0700409 "src/core",
benjaminwagner787ca872015-08-17 12:58:10 -0700410 "src/gpu",
411 "src/image",
Mike Klein135a1b12017-08-15 13:13:59 -0400412 "src/images",
benjaminwagner787ca872015-08-17 12:58:10 -0700413 "src/lazy",
414 "src/opts",
415 "src/pdf",
Ben Wagner4ccf49c2018-03-26 15:46:40 -0400416 "src/ports",
benjaminwagner787ca872015-08-17 12:58:10 -0700417 "src/sfnt",
Florin Malita5edba452017-05-30 16:39:47 -0400418 "src/shaders",
Michael Ludwig4f94ef62018-09-12 15:22:16 -0400419 "src/shaders/gradients",
benjaminwagnerc8962512016-09-30 12:06:27 -0700420 "src/sksl",
benjaminwagner787ca872015-08-17 12:58:10 -0700421 "src/utils",
Ben Wagnerd0a3b062016-10-24 14:11:12 -0400422 "third_party/gif",
benjaminwagner56f6d062016-01-13 10:45:19 -0800423]
benjaminwagner787ca872015-08-17 12:58:10 -0700424
benjaminwagner56f6d062016-01-13 10:45:19 -0800425################################################################################
426## DM_SRCS
427################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700428
benjaminwagner56f6d062016-01-13 10:45:19 -0800429DM_SRCS_ALL = struct(
430 include = [
benjaminwagner6f6bef82015-10-15 08:09:44 -0700431 "dm/*.cpp",
432 "dm/*.h",
Mike Klein60900b52018-09-21 11:19:45 -0400433 "experimental/pipe/*.cpp",
434 "experimental/pipe/*.h",
Ben Wagner4ccf49c2018-03-26 15:46:40 -0400435 "experimental/svg/model/*.cpp",
436 "experimental/svg/model/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700437 "gm/*.cpp",
438 "gm/*.h",
Ben Wagner4ccf49c2018-03-26 15:46:40 -0400439 "src/xml/*.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700440 "tests/*.cpp",
441 "tests/*.h",
Ben Wagnerfb4487b2018-03-26 17:48:09 -0400442 "tools/ios_utils.h",
443 "tools/BinaryAsset.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700444 "tools/BigPathBench.inc",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700445 "tools/CrashHandler.cpp",
446 "tools/CrashHandler.h",
Robert Phillipse61ba842018-05-30 08:27:26 -0400447 "tools/DDLPromiseImageHelper.cpp",
448 "tools/DDLPromiseImageHelper.h",
449 "tools/DDLTileHelper.cpp",
450 "tools/DDLTileHelper.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700451 "tools/ProcStats.cpp",
452 "tools/ProcStats.h",
Ben Wagnerfb4487b2018-03-26 17:48:09 -0400453 "tools/Registry.h",
454 "tools/ResourceFactory.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700455 "tools/Resources.cpp",
456 "tools/Resources.h",
benjaminwagner99fb6702016-07-28 15:12:21 -0700457 "tools/SkJSONCPP.h",
458 "tools/UrlDataManager.cpp",
459 "tools/UrlDataManager.h",
460 "tools/debugger/*.cpp",
461 "tools/debugger/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700462 "tools/flags/*.cpp",
463 "tools/flags/*.h",
Ben Wagner483c7722018-02-20 17:06:07 -0500464 "tools/fonts/SkRandomScalerContext.cpp",
465 "tools/fonts/SkRandomScalerContext.h",
466 "tools/fonts/SkTestFontMgr.cpp",
467 "tools/fonts/SkTestFontMgr.h",
Ben Wagner97182cc2018-02-15 10:20:04 -0500468 "tools/fonts/SkTestSVGTypeface.cpp",
469 "tools/fonts/SkTestSVGTypeface.h",
470 "tools/fonts/SkTestTypeface.cpp",
471 "tools/fonts/SkTestTypeface.h",
Ben Wagner483c7722018-02-20 17:06:07 -0500472 "tools/fonts/sk_tool_utils_font.cpp",
473 "tools/fonts/test_font_monospace.inc",
474 "tools/fonts/test_font_sans_serif.inc",
475 "tools/fonts/test_font_serif.inc",
476 "tools/fonts/test_font_index.inc",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700477 "tools/gpu/**/*.cpp",
478 "tools/gpu/**/*.h",
mtkleine1fc4522016-02-09 12:32:52 -0800479 "tools/random_parse_path.cpp",
480 "tools/random_parse_path.h",
Ben Wagnerfb4487b2018-03-26 17:48:09 -0400481 "tools/sk_pixel_iter.h",
benjaminwagner32885142015-10-24 07:55:31 -0700482 "tools/sk_tool_utils.cpp",
483 "tools/sk_tool_utils.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700484 "tools/timer/*.cpp",
485 "tools/timer/*.h",
Brian Salomon40d01192017-07-19 13:05:11 -0400486 "tools/trace/*.cpp",
487 "tools/trace/*.h",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700488 ],
489 exclude = [
Mike Kleindb537602018-06-01 11:01:11 -0400490 "gm/cgms.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700491 "tests/FontMgrAndroidParserTest.cpp", # Android-only.
Ben Wagner37a06c02018-06-22 21:11:00 +0000492 "tests/FontMgrFontConfigTest.cpp", # FontConfig-only.
benjaminwagner6f6bef82015-10-15 08:09:44 -0700493 "tests/skia_test.cpp", # Old main.
Brian Salomonf9ec4702017-11-19 14:46:36 -0500494 "tools/gpu/atlastext/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700495 "tools/gpu/gl/angle/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700496 "tools/gpu/gl/egl/*",
497 "tools/gpu/gl/glx/*",
498 "tools/gpu/gl/iOS/*",
499 "tools/gpu/gl/mac/*",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700500 "tools/gpu/gl/win/*",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700501 "tools/timer/SysTimer_mach.cpp",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700502 "tools/timer/SysTimer_windows.cpp",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700503 ],
504)
505
Ben Wagnerdea74282017-03-16 19:15:09 -0400506################################################################################
507## dm_srcs()
508################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700509
Ben Wagner9eca72b2017-10-17 10:57:34 -0400510def dm_srcs(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400511 """Sources for the dm binary for the specified os."""
512 return skia_glob(DM_SRCS_ALL) + skia_select(
513 os_conditions,
514 [
515 [],
516 ["tests/FontMgrAndroidParserTest.cpp"],
517 [],
518 ],
519 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800520
521################################################################################
522## DM_INCLUDES
523################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700524
benjaminwagner6f6bef82015-10-15 08:09:44 -0700525DM_INCLUDES = [
benjaminwagnerb1fe8f62016-02-01 09:05:08 -0800526 "dm",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700527 "gm",
Mike Klein60900b52018-09-21 11:19:45 -0400528 "experimental/pipe",
Mike Reed7f302c42017-02-18 14:12:08 -0500529 "experimental/svg/model",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700530 "src/codec",
Mike Reedaab8ce42017-02-18 12:57:09 -0500531 "src/core",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700532 "src/effects",
533 "src/fonts",
Hal Canarydb683012016-11-23 08:55:18 -0700534 "src/images",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700535 "src/pathops",
536 "src/pipe/utils",
benjaminwagner86ea33e2015-10-26 10:46:25 -0700537 "src/ports",
Florin Malita5edba452017-05-30 16:39:47 -0400538 "src/shaders",
539 "src/shaders/gradients",
Mike Reedf71828f2017-02-18 09:51:33 -0500540 "src/xml",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700541 "tests",
542 "tools",
benjaminwagner99fb6702016-07-28 15:12:21 -0700543 "tools/debugger",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700544 "tools/flags",
Ben Wagner483c7722018-02-20 17:06:07 -0500545 "tools/fonts",
benjaminwagner38d68bc2016-04-01 05:00:51 -0700546 "tools/gpu",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700547 "tools/timer",
Brian Salomon40d01192017-07-19 13:05:11 -0400548 "tools/trace",
benjaminwagner6f6bef82015-10-15 08:09:44 -0700549]
550
benjaminwagner56f6d062016-01-13 10:45:19 -0800551################################################################################
552## DM_ARGS
553################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700554
Ben Wagner59f9edb2016-11-28 15:30:37 -0500555def DM_ARGS(asan):
Ben Wagner722efde2018-07-31 18:04:05 -0400556 source = ["tests", "gm", "image", "lottie"]
Ben Wagnerb303a422018-07-31 10:31:06 -0400557
558 # TODO(benjaminwagner): f16, pic-8888, serialize-8888, and tiles_rt-8888 fail.
559 config = ["565", "8888", "pdf"]
560 match = ["~Codec_78329453"]
561 return (["--src"] + source + ["--config"] + config + ["--nonativeFonts"] +
562 ["--match"] + match)
benjaminwagner56f6d062016-01-13 10:45:19 -0800563
564################################################################################
565## COPTS
566################################################################################
iroth8b99ef42015-11-02 11:11:21 -0800567
Ben Wagner9eca72b2017-10-17 10:57:34 -0400568def base_copts(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400569 return skia_select(
570 os_conditions,
571 [
572 # UNIX
573 [
574 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
575 # Internal use of deprecated methods. :(
576 "-Wno-deprecated-declarations",
577 # TODO(kjlubick)
578 "-Wno-self-assign", # Spurious warning in tests/PathOpsDVectorTest.cpp?
579 ],
580 # ANDROID
581 [
Mike Klein9b7e99e2018-08-22 16:45:11 -0400582 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
Ben Wagnerb303a422018-07-31 10:31:06 -0400583 # 'GrResourceCache' declared with greater visibility than the
584 # type of its field 'GrResourceCache::fPurgeableQueue'... bogus.
585 "-Wno-error=attributes",
586 ],
587 # IOS
Benjamin Barenblatfd10d172018-07-31 16:41:37 -0400588 [
589 "-Wno-implicit-fallthrough", # Some intentional fallthrough.
590 ],
Ben Wagnerb303a422018-07-31 10:31:06 -0400591 ],
592 )
benjaminwagner56f6d062016-01-13 10:45:19 -0800593
594################################################################################
595## DEFINES
596################################################################################
597
Ben Wagner9eca72b2017-10-17 10:57:34 -0400598def base_defines(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400599 return [
600 # Chrome DEFINES.
601 "SK_USE_FREETYPE_EMBOLDEN",
602 # Turn on a few Google3-specific build fixes.
603 "SK_BUILD_FOR_GOOGLE3",
604 # Required for building dm.
605 "GR_TEST_UTILS",
606 # Staging flags for API changes
607 # Should remove after we update golden images
608 "SK_WEBP_ENCODER_USE_DEFAULT_METHOD",
609 # Experiment to diagnose image diffs in Google3
610 "SK_JUMPER_DISABLE_8BIT",
611 # JPEG is in codec_limited
612 "SK_HAS_JPEG_LIBRARY",
613 ] + skia_select(
614 os_conditions,
615 [
616 # UNIX
617 [
618 "PNG_SKIP_SETJMP_CHECK",
619 "SK_BUILD_FOR_UNIX",
620 "SK_SAMPLES_FOR_X",
621 "SK_PDF_USE_SFNTLY",
622 "SK_CODEC_DECODES_RAW",
623 "SK_HAS_PNG_LIBRARY",
624 "SK_HAS_WEBP_LIBRARY",
625 ],
626 # ANDROID
627 [
628 "SK_BUILD_FOR_ANDROID",
629 "SK_CODEC_DECODES_RAW",
630 "SK_HAS_PNG_LIBRARY",
631 "SK_HAS_WEBP_LIBRARY",
632 ],
633 # IOS
634 [
635 "SK_BUILD_FOR_IOS",
636 "SK_BUILD_NO_OPTS",
637 "SKNX_NO_SIMD",
638 ],
639 ],
640 )
benjaminwagner787ca872015-08-17 12:58:10 -0700641
benjaminwagner56f6d062016-01-13 10:45:19 -0800642################################################################################
643## LINKOPTS
644################################################################################
benjaminwagner86ea33e2015-10-26 10:46:25 -0700645
Ben Wagner9eca72b2017-10-17 10:57:34 -0400646def base_linkopts(os_conditions):
Ben Wagnerb303a422018-07-31 10:31:06 -0400647 return [
648 "-ldl",
649 ] + skia_select(
650 os_conditions,
651 [
652 # UNIX
653 [],
654 # ANDROID
655 [
656 "-lEGL",
Ben Wagner773151f2018-08-17 09:28:53 -0400657 "-lGLESv2",
Ben Wagnerb303a422018-07-31 10:31:06 -0400658 ],
659 # IOS
660 [
661 "-framework CoreFoundation",
662 "-framework CoreGraphics",
663 "-framework CoreText",
664 "-framework ImageIO",
665 "-framework MobileCoreServices",
666 ],
667 ],
668 )