1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/features.gni")
6 import("//build/config/ui.gni")
7 import("//testing/test.gni")
8 if (current_cpu == "arm") {
9 import("//build/config/arm.gni")
12 skia_support_gpu = !is_ios
13 skia_support_pdf = !is_ios && (enable_basic_printing || enable_print_preview)
15 # The list of Skia defines that are to be set for blink.
16 gypi_blink_skia_defines =
17 exec_script("//build/gypi_to_gn.py",
20 "//third_party/WebKit/public/blink_skia_config.gypi"),
21 "--replace=<(skia_include_path)=//third_party/skia/include",
22 "--replace=<(skia_src_path)=//third_party/skia/src",
25 [ "//third_party/WebKit/public/blink_skia_config.gypi" ])
27 # The list of Skia defines that are to be set for chromium.
29 exec_script("//build/gypi_to_gn.py",
32 "//third_party/skia/gyp/skia_for_chromium_defines.gypi"),
33 "--replace=<(skia_include_path)=//third_party/skia/include",
34 "--replace=<(skia_src_path)=//third_party/skia/src",
37 [ "//third_party/skia/gyp/skia_for_chromium_defines.gypi" ])
39 # The list of Skia core sources that are to be set for chromium.
41 exec_script("//build/gypi_to_gn.py",
43 rebase_path("//third_party/skia/gyp/core.gypi"),
44 "--replace=<(skia_include_path)=//third_party/skia/include",
45 "--replace=<(skia_src_path)=//third_party/skia/src",
48 [ "//third_party/skia/gyp/core.gypi" ])
50 # The list of Skia gpu sources that are to be set for chromium.
52 exec_script("//build/gypi_to_gn.py",
54 rebase_path("//third_party/skia/gyp/gpu.gypi"),
55 "--replace=<(skia_include_path)=//third_party/skia/include",
56 "--replace=<(skia_src_path)=//third_party/skia/src",
59 [ "//third_party/skia/gyp/gpu.gypi" ])
61 # The list of Skia pdf sources that are to be set for chromium.
63 exec_script("//build/gypi_to_gn.py",
65 rebase_path("//third_party/skia/gyp/pdf.gypi"),
66 "--replace=<(skia_include_path)=//third_party/skia/include",
67 "--replace=<(skia_src_path)=//third_party/skia/src",
70 [ "//third_party/skia/gyp/pdf.gypi" ])
72 # The list of Skia effects that are to be set for chromium.
74 exec_script("//build/gypi_to_gn.py",
76 rebase_path("//third_party/skia/gyp/effects.gypi"),
77 "--replace=<(skia_include_path)=//third_party/skia/include",
78 "--replace=<(skia_src_path)=//third_party/skia/src",
81 [ "//third_party/skia/gyp/effects.gypi" ])
83 # The list of Skia utils that are to be set for chromium.
85 exec_script("//build/gypi_to_gn.py",
87 rebase_path("//third_party/skia/gyp/utils.gypi"),
88 "--replace=<(skia_include_path)=//third_party/skia/include",
89 "--replace=<(skia_src_path)=//third_party/skia/src",
92 [ "//third_party/skia/gyp/utils.gypi" ])
95 exec_script("//build/gypi_to_gn.py",
97 rebase_path("//third_party/skia/gyp/opts.gypi"),
98 "--replace=<(skia_include_path)=//third_party/skia/include",
99 "--replace=<(skia_src_path)=//third_party/skia/src",
102 [ "//third_party/skia/gyp/opts.gypi" ])
104 # The list of Skia files is kept in skia_gn_files.gypi. Read it.
106 exec_script("//build/gypi_to_gn.py",
108 rebase_path("skia_gn_files.gypi"),
109 "--replace=<(skia_include_path)=//third_party/skia/include",
110 "--replace=<(skia_src_path)=//third_party/skia/src",
113 [ "skia_gn_files.gypi" ])
115 # External-facing config for dependent code.
116 config("skia_config") {
120 "//third_party/skia/include/c",
121 "//third_party/skia/include/config",
122 "//third_party/skia/include/core",
123 "//third_party/skia/include/effects",
124 "//third_party/skia/include/images",
125 "//third_party/skia/include/lazy",
126 "//third_party/skia/include/pathops",
127 "//third_party/skia/include/pdf",
128 "//third_party/skia/include/pipe",
129 "//third_party/skia/include/ports",
130 "//third_party/skia/include/utils",
132 # need to move this to internal. see crbug.com/457691
133 "//third_party/skia/src/core",
136 defines = gypi_blink_skia_defines.blink_skia_defines
137 defines += gypi_skia_defines.skia_for_chromium_defines
141 if (component_mode == "shared_library") {
142 defines += [ "SKIA_DLL" ]
145 if (skia_support_gpu) {
147 "//third_party/skia/include/gpu",
148 "//third_party/skia/src/gpu",
150 defines += [ "SK_SUPPORT_GPU=1" ]
152 defines += [ "SK_SUPPORT_GPU=0" ]
157 "SK_BUILD_FOR_ANDROID",
163 defines += [ "SK_BUILD_FOR_MAC" ]
167 # Internal-facing config for Skia library code.
168 config("skia_library_config") {
169 # These include directories are only included for Skia code and are not
170 # exported to dependents. It's not clear if this is on purpose, but this
171 # matches the GYP build.
173 "//third_party/skia/src/image",
174 "//third_party/skia/src/opts",
175 "//third_party/skia/src/pdf",
176 "//third_party/skia/src/ports",
177 "//third_party/skia/src/sfnt",
178 "//third_party/skia/src/utils",
179 "//third_party/skia/src/lazy",
181 if (is_mac || is_ios) {
182 include_dirs += [ "//third_party/skia/include/utils/mac" ]
185 include_dirs += [ "//third_party/skia/include/utils/ios" ]
190 if (component_mode == "shared_library") {
191 defines += [ "SKIA_IMPLEMENTATION=1" ]
194 if (current_cpu == "arm") {
196 defines += [ "SK_ARM_HAS_NEON" ]
198 if (arm_optionally_use_neon) {
199 defines += [ "SK_ARM_HAS_OPTIONAL_NEON" ]
203 # Settings for text blitting, chosen to approximate the system browser.
206 "SK_GAMMA_EXPONENT=1.2",
207 "SK_GAMMA_CONTRAST=0.2",
208 "SK_HIGH_QUALITY_IS_LANCZOS",
210 } else if (is_android) {
212 "SK_GAMMA_APPLY_TO_A8",
213 "SK_GAMMA_EXPONENT=1.4",
214 "SK_GAMMA_CONTRAST=0.0",
219 "SK_GAMMA_CONTRAST=0.5",
220 "SK_HIGH_QUALITY_IS_LANCZOS",
225 "SK_GAMMA_CONTRAST=0.0",
226 "SK_HIGH_QUALITY_IS_LANCZOS",
232 # Android devices are typically more memory constrained, so default to a
233 # smaller glyph cache (it may be overriden at runtime when the renderer
234 # starts up, depending on the actual device memory).
235 "SK_DEFAULT_FONT_CACHE_LIMIT=1048576", # 1024 * 1024
238 defines += [ "SK_DEFAULT_FONT_CACHE_LIMIT=20971520" ] # 20 * 1024 * 1024
243 "//third_party/skia/include/utils/win",
244 "//third_party/skia/src/utils/win",
247 defines += [ "SK_FONTHOST_USES_FONTMGR" ]
250 "/wd4244", # conversion from 'type1( __int64)' to 'type2 (unsigned int)'
251 "/wd4267", # conversion from 'size_t' (64 bit) to 'type'(32 bit).
252 "/wd4341", # signed value is out of range for enum constant.
253 "/wd4345", # Object is default-initialized if initialization is omitted.
254 "/wd4390", # ';'empty statement found in looping;is it what was intended?
255 "/wd4554", # 'operator' : check operator precedence for possible error
256 "/wd4748", # compiler will disable optimizations if a function has inline
257 # assembly code contains flow control(jmp or jcc) statements.
258 "/wd4800", # forcing value to bool 'true/false'(assigning int to bool).
266 "config/SkUserConfig.h",
267 "ext/analysis_canvas.cc",
268 "ext/analysis_canvas.h",
269 "ext/benchmarking_canvas.cc",
270 "ext/benchmarking_canvas.h",
271 "ext/bitmap_platform_device.h",
274 "ext/event_tracer_impl.cc",
275 "ext/event_tracer_impl.h",
276 "ext/fontmgr_default_win.cc",
277 "ext/fontmgr_default_win.h",
278 "ext/google_logging.cc",
279 "ext/image_operations.cc",
280 "ext/image_operations.h",
281 "ext/opacity_draw_filter.cc",
282 "ext/opacity_draw_filter.h",
283 "ext/pixel_ref_utils.cc",
284 "ext/pixel_ref_utils.h",
285 "ext/platform_canvas.cc",
286 "ext/platform_canvas.h",
287 "ext/platform_device.cc",
288 "ext/platform_device.h",
289 "ext/platform_device_linux.cc",
290 "ext/platform_device_mac.cc",
291 "ext/platform_device_win.cc",
292 "ext/recursive_gaussian_convolution.cc",
293 "ext/recursive_gaussian_convolution.h",
295 "ext/SkDiscardableMemory_chrome.h",
296 "ext/SkDiscardableMemory_chrome.cc",
297 "ext/SkMemory_new_handler.cpp",
298 "ext/skia_utils_base.cc",
299 "ext/skia_utils_base.h",
300 "ext/skia_utils_ios.mm",
301 "ext/skia_utils_ios.h",
302 "ext/skia_utils_mac.mm",
303 "ext/skia_utils_mac.h",
304 "ext/skia_utils_win.cc",
305 "ext/skia_utils_win.h",
308 # The skia gypi values are relative to the skia_dir, so we need to rebase.
309 sources += gypi_skia_core.sources
310 sources += gypi_skia_effects.sources
311 sources += gypi_skia_utils.sources
312 sources += gypi_values.skia_library_sources
314 # This and skia_opts are really the same conceptual target so share headers.
315 allow_circular_includes_from = [ ":skia_opts" ]
317 if (current_cpu == "arm") {
319 "//third_party/skia/src/core/SkUtilsArm.cpp",
320 "//third_party/skia/src/core/SkUtilsArm.h",
325 if (skia_support_gpu) {
326 sources += gypi_skia_gpu.skgpu_sources
327 sources += gypi_skia_gpu.skgpu_null_gl_sources
330 # Remove unused util files include in utils.gypi
332 "//third_party/skia/include/utils/SkBoundaryPatch.h",
333 "//third_party/skia/include/utils/SkFrontBufferedStream.h",
334 "//third_party/skia/include/utils/SkCamera.h",
335 "//third_party/skia/include/utils/SkCanvasStateUtils.h",
336 "//third_party/skia/include/utils/SkCubicInterval.h",
337 "//third_party/skia/include/utils/SkCullPoints.h",
338 "//third_party/skia/include/utils/SkDebugUtils.h",
339 "//third_party/skia/include/utils/SkDumpCanvas.h",
340 "//third_party/skia/include/utils/SkEventTracer.h",
341 "//third_party/skia/include/utils/SkInterpolator.h",
342 "//third_party/skia/include/utils/SkLayer.h",
343 "//third_party/skia/include/utils/SkMeshUtils.h",
344 "//third_party/skia/include/utils/SkNinePatch.h",
345 "//third_party/skia/include/utils/SkParse.h",
346 "//third_party/skia/include/utils/SkParsePaint.h",
347 "//third_party/skia/include/utils/SkParsePath.h",
348 "//third_party/skia/include/utils/SkRandom.h",
349 "//third_party/skia/src/utils/SkBitmapHasher.cpp",
350 "//third_party/skia/src/utils/SkBitmapHasher.h",
351 "//third_party/skia/src/utils/SkBoundaryPatch.cpp",
352 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp",
353 "//third_party/skia/src/utils/SkCamera.cpp",
354 "//third_party/skia/src/utils/SkCanvasStack.h",
355 "//third_party/skia/src/utils/SkCubicInterval.cpp",
356 "//third_party/skia/src/utils/SkCullPoints.cpp",
357 "//third_party/skia/src/utils/SkDumpCanvas.cpp",
358 "//third_party/skia/src/utils/SkFloatUtils.h",
359 "//third_party/skia/src/utils/SkInterpolator.cpp",
360 "//third_party/skia/src/utils/SkLayer.cpp",
361 "//third_party/skia/src/utils/SkMD5.cpp",
362 "//third_party/skia/src/utils/SkMD5.h",
363 "//third_party/skia/src/utils/SkMeshUtils.cpp",
364 "//third_party/skia/src/utils/SkNinePatch.cpp",
365 "//third_party/skia/src/utils/SkOSFile.cpp",
366 "//third_party/skia/src/utils/SkParse.cpp",
367 "//third_party/skia/src/utils/SkParseColor.cpp",
368 "//third_party/skia/src/utils/SkParsePath.cpp",
369 "//third_party/skia/src/utils/SkPathUtils.cpp",
370 "//third_party/skia/src/utils/SkSHA1.cpp",
371 "//third_party/skia/src/utils/SkSHA1.h",
372 "//third_party/skia/src/utils/SkTFitsIn.h",
373 "//third_party/skia/src/utils/SkTLogic.h",
375 # We don't currently need to change thread affinity, so leave out this complexity for now.
376 "//third_party/skia/src/utils/SkThreadUtils_pthread_mach.cpp",
377 "//third_party/skia/src/utils/SkThreadUtils_pthread_linux.cpp",
380 "//third_party/skia/src/fonts/SkGScalerContext.cpp",
381 "//third_party/skia/src/fonts/SkGScalerContext.h",
387 "//third_party/skia/src/utils/SkThreadUtils_pthread.cpp",
388 "//third_party/skia/src/utils/SkThreadUtils_pthread_other.cpp",
392 # Keeping _pthread.cpp and _pthread_other.cpp.
393 "//third_party/skia/src/utils/SkThreadUtils_win.cpp",
397 # need separate win section to handle chromes auto gn filter
398 # (build/config/BUILDCONFIG.gn)
402 "//third_party/skia/include/utils/win/SkAutoCoInitialize.h",
403 "//third_party/skia/include/utils/win/SkHRESULT.h",
404 "//third_party/skia/include/utils/win/SkIStream.h",
405 "//third_party/skia/include/utils/win/SkTScopedComPtr.h",
406 "//third_party/skia/src/utils/win/SkAutoCoInitialize.cpp",
407 "//third_party/skia/src/utils/win/SkIStream.cpp",
408 "//third_party/skia/src/utils/win/SkWGL_win.cpp",
412 if (is_android && (!enable_basic_printing && !enable_print_preview)) {
413 sources -= [ "ext/skia_utils_base.cc" ]
416 # Fixup skia library sources.
419 "//third_party/skia/src/ports/SkOSFile_posix.cpp",
420 "//third_party/skia/src/ports/SkTime_Unix.cpp",
421 "//third_party/skia/src/ports/SkTLS_pthread.cpp",
425 "//third_party/skia/src/ports/SkFontHost_win.cpp",
426 "//third_party/skia/src/ports/SkFontMgr_win_dw.cpp",
427 "//third_party/skia/src/ports/SkOSFile_win.cpp",
428 "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp",
429 "//third_party/skia/src/ports/SkScalerContext_win_dw.cpp",
430 "//third_party/skia/src/ports/SkScalerContext_win_dw.h",
431 "//third_party/skia/src/ports/SkTLS_win.cpp",
432 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp",
433 "//third_party/skia/src/ports/SkTypeface_win_dw.h",
438 "//third_party/skia/src/ports/SkFontConfigParser_android.cpp",
439 "//third_party/skia/src/ports/SkFontMgr_android.cpp",
443 sources -= [ "//third_party/skia/src/ports/SkFontHost_mac.cpp" ]
448 "//third_party/skia/src/ports/SkFontHost_fontconfig.cpp",
449 "//third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp",
450 "//third_party/skia/src/ports/SkFontConfigInterface_direct.cpp",
454 if (!is_linux && !is_android) {
456 "//third_party/skia/src/ports/SkFontHost_FreeType_common.cpp",
457 "//third_party/skia/src/ports/SkFontHost_FreeType.cpp",
461 # Select the right BitmapPlatformDevice.
464 "ext/bitmap_platform_device_win.cc",
465 "ext/bitmap_platform_device_win.h",
469 "ext/bitmap_platform_device_mac.cc",
470 "ext/bitmap_platform_device_mac.h",
472 } else if (use_cairo) {
474 "ext/bitmap_platform_device_cairo.cc",
475 "ext/bitmap_platform_device_cairo.h",
479 "ext/bitmap_platform_device_skia.cc",
480 "ext/bitmap_platform_device_skia.h",
485 # Skia won't compile with some of the more strict clang warnings.
487 # SkASSERT(!"sk_out_of_memory");
488 configs -= [ "//build/config/clang:extra_warnings" ]
491 configs -= [ "//build/config/compiler:chromium_code" ]
493 ":skia_library_config",
494 "//build/config/compiler:no_chromium_code",
496 public_configs = [ ":skia_config" ]
501 "//base/third_party/dynamic_annotations",
502 "//third_party/zlib",
507 # Some files define WIN32_LEAN_AND_MEAN and we want to avoid a duplicate
508 # definition warning.
509 "//build/config/win:lean_and_mean",
515 "//build/config/linux:fontconfig",
516 "//build/config/linux:freetype2",
519 configs += [ "//build/config/linux:pangocairo" ]
521 deps += [ "//third_party/icu:icuuc" ]
525 set_sources_assignment_filter([])
526 sources += [ "ext/platform_device_linux.cc" ]
527 set_sources_assignment_filter(sources_assignment_filter)
529 "//third_party/expat",
530 "//third_party/freetype",
531 "//third_party/android_tools:cpu_features",
535 if (skia_support_pdf) {
536 deps += [ "//third_party/sfntly" ]
537 sources += gypi_skia_pdf.sources
540 if (is_android && !is_debug) {
541 configs -= [ "//build/config/compiler:optimize" ]
542 configs += [ "//build/config/compiler:optimize_max" ]
546 # Separated out so it can be compiled with different flags for SSE.
547 source_set("skia_opts") {
551 if (current_cpu == "x86" || current_cpu == "x64") {
552 sources = gypi_skia_opts.sse2_sources + gypi_skia_opts.ssse3_sources +
553 gypi_skia_opts.sse41_sources +
556 "ext/convolver_SSE2.cc",
559 if (is_linux || is_mac) {
560 cflags += [ "-msse4.1" ]
562 } else if (current_cpu == "arm") {
563 # The assembly uses the frame pointer register (r7 in Thumb/r11 in
564 # ARM), the compiler doesn't like that.
565 cflags += [ "-fomit-frame-pointer" ]
567 if (arm_version >= 7) {
568 sources = gypi_skia_opts.armv7_sources
569 if (arm_use_neon || arm_optionally_use_neon) {
570 sources += gypi_skia_opts.neon_sources
572 # Root build config sets -mfpu=$arm_fpu, which we expect to be neon
575 configs -= [ "//build/config/compiler:compiler_arm_fpu" ]
576 cflags += [ "-mfpu=neon" ]
580 sources = gypi_skia_opts.none_sourcees
582 } else if (current_cpu == "mipsel") {
583 cflags += [ "-fomit-frame-pointer" ]
584 sources = gypi_skia_opts.none_sources
586 assert(false, "Need to port cpu specific stuff from skia_library_opts.gyp")
589 if (is_android && !is_debug) {
590 configs -= [ "//build/config/compiler:optimize" ]
591 configs += [ "//build/config/compiler:optimize_max" ]
594 configs -= [ "//build/config/compiler:chromium_code" ]
597 ":skia_library_config",
598 "//build/config/compiler:no_chromium_code",
605 visibility = [ ":skia" ]
608 test("skia_unittests") {
610 "ext/analysis_canvas_unittest.cc",
611 "ext/bitmap_platform_device_mac_unittest.cc",
612 "ext/convolver_unittest.cc",
613 "ext/image_operations_unittest.cc",
614 "ext/pixel_ref_utils_unittest.cc",
615 "ext/platform_canvas_unittest.cc",
616 "ext/recursive_gaussian_convolution_unittest.cc",
617 "ext/refptr_unittest.cc",
618 "ext/skia_utils_ios_unittest.mm",
619 "ext/skia_utils_mac_unittest.mm",
622 if (!is_win && !is_mac) {
623 sources -= [ "ext/platform_canvas_unittest.cc" ]
629 "//base/test:run_all_unittests",
630 "//cc:test_support", # TODO: Fix this test to not depend on cc.