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 (cpu_arch == "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",
131 "//third_party/skia/src/core",
132 "//third_party/skia/src/image",
133 "//third_party/skia/src/opts",
134 "//third_party/skia/src/pdf",
135 "//third_party/skia/src/ports",
136 "//third_party/skia/src/sfnt",
137 "//third_party/skia/src/utils",
138 "//third_party/skia/src/lazy",
141 defines = gypi_blink_skia_defines.blink_skia_defines
142 defines += gypi_skia_defines.skia_for_chromium_defines
145 "SK_ENABLE_INST_COUNT=0",
146 "GR_GL_CUSTOM_SETUP_HEADER=\"GrGLConfig_chrome.h\"",
147 "SK_ENABLE_LEGACY_API_ALIASING=1",
148 "SK_ATTR_DEPRECATED=SK_NOTHING_ARG1",
149 "GR_GL_IGNORE_ES3_MSAA=0",
150 "SK_WILL_NEVER_DRAW_PERSPECTIVE_TEXT",
151 "SK_SUPPORT_LEGACY_GETTOTALCLIP",
154 if (component_mode == "shared_library") {
155 defines += [ "SKIA_DLL" ]
158 if (skia_support_gpu) {
160 "//third_party/skia/include/gpu",
161 "//third_party/skia/src/gpu",
163 defines += [ "SK_SUPPORT_GPU=1" ]
165 defines += [ "SK_SUPPORT_GPU=0" ]
168 # For POSIX platforms, prefer the Mutex implementation provided by Skia
169 # since it does not generate static initializers.
171 defines += [ "SK_USE_POSIX_THREADS" ]
176 "SK_BUILD_FOR_ANDROID",
182 defines += [ "SK_BUILD_FOR_MAC" ]
186 # Internal-facing config for Skia library code.
187 config("skia_library_config") {
188 # These include directories are only included for Skia code and are not
189 # exported to dependents. It's not clear if this is on purpose, but this
190 # matches the GYP build.
192 if (is_mac || is_ios) {
193 include_dirs += [ "//third_party/skia/include/utils/mac" ]
196 include_dirs += [ "//third_party/skia/include/utils/ios" ]
200 #skia_export_defines ???) TODO
202 # skia uses static initializers to initialize the serialization logic
203 # of its "pictures" library. This is currently not used in chrome; if
204 # it ever gets used the processes that use it need to call
205 # SkGraphics::Init().
206 "SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=0",
208 # Forcing the unoptimized path for the offset image filter in skia until
209 # all filters used in Blink support the optimized path properly
210 "SK_DISABLE_OFFSETIMAGEFILTER_OPTIMIZATION",
211 "IGNORE_ROT_AA_RECT_OPT",
212 "SK_IGNORE_BLURRED_RRECT_OPT",
214 # this flag forces Skia not to use typographic metrics with GDI.
215 "SK_GDI_ALWAYS_USE_TEXTMETRICS_FOR_FONT_METRICS",
216 "SK_USE_DISCARDABLE_SCALEDIMAGECACHE",
219 if (component_mode == "shared_library") {
220 defines += [ "SKIA_IMPLEMENTATION=1" ]
223 if (cpu_arch == "arm") {
225 defines += [ "SK_ARM_HAS_NEON" ]
227 if (arm_optionally_use_neon) {
228 defines += [ "SK_ARM_HAS_OPTIONAL_NEON" ]
232 # Settings for text blitting, chosen to approximate the system browser.
235 "SK_GAMMA_EXPONENT=1.2",
236 "SK_GAMMA_CONTRAST=0.2",
237 "SK_HIGH_QUALITY_IS_LANCZOS",
239 } else if (is_android) {
241 "SK_GAMMA_APPLY_TO_A8",
242 "SK_GAMMA_EXPONENT=1.4",
243 "SK_GAMMA_CONTRAST=0.0",
248 "SK_GAMMA_CONTRAST=0.5",
249 "SK_HIGH_QUALITY_IS_LANCZOS",
254 "SK_GAMMA_CONTRAST=0.0",
255 "SK_HIGH_QUALITY_IS_LANCZOS",
261 # Android devices are typically more memory constrained, so default to a
262 # smaller glyph cache (it may be overriden at runtime when the renderer
263 # starts up, depending on the actual device memory).
264 "SK_DEFAULT_FONT_CACHE_LIMIT=1048576", # 1024 * 1024
267 defines += [ "SK_DEFAULT_FONT_CACHE_LIMIT=20971520" ] # 20 * 1024 * 1024
272 "//third_party/skia/include/utils/win",
273 "//third_party/skia/src/utils/win",
276 defines += [ "SK_FONTHOST_USES_FONTMGR" ]
279 "/wd4244", # conversion from 'type1( __int64)' to 'type2 (unsigned int)'
280 "/wd4267", # conversion from 'size_t' (64 bit) to 'type'(32 bit).
281 "/wd4341", # signed value is out of range for enum constant.
282 "/wd4345", # Object is default-initialized if initialization is omitted.
283 "/wd4390", # ';'empty statement found in looping;is it what was intended?
284 "/wd4554", # 'operator' : check operator precedence for possible error
285 "/wd4748", # compiler will disable optimizations if a function has inline
286 # assembly code contains flow control(jmp or jcc) statements.
287 "/wd4800", # forcing value to bool 'true/false'(assigning int to bool).
295 "config/SkUserConfig.h",
296 "ext/analysis_canvas.cc",
297 "ext/analysis_canvas.h",
298 "ext/benchmarking_canvas.cc",
299 "ext/benchmarking_canvas.h",
300 "ext/bitmap_platform_device.h",
303 "ext/event_tracer_impl.cc",
304 "ext/event_tracer_impl.h",
305 "ext/fontmgr_default_win.cc",
306 "ext/fontmgr_default_win.h",
307 "ext/google_logging.cc",
308 "ext/image_operations.cc",
309 "ext/image_operations.h",
310 "ext/opacity_draw_filter.cc",
311 "ext/opacity_draw_filter.h",
312 "ext/pixel_ref_utils.cc",
313 "ext/pixel_ref_utils.h",
314 "ext/platform_canvas.cc",
315 "ext/platform_canvas.h",
316 "ext/platform_device.cc",
317 "ext/platform_device.h",
318 "ext/platform_device_linux.cc",
319 "ext/platform_device_mac.cc",
320 "ext/platform_device_win.cc",
321 "ext/recursive_gaussian_convolution.cc",
322 "ext/recursive_gaussian_convolution.h",
324 "ext/SkDiscardableMemory_chrome.h",
325 "ext/SkDiscardableMemory_chrome.cc",
326 "ext/SkMemory_new_handler.cpp",
327 "ext/skia_utils_base.cc",
328 "ext/skia_utils_base.h",
329 "ext/skia_utils_ios.mm",
330 "ext/skia_utils_ios.h",
331 "ext/skia_utils_mac.mm",
332 "ext/skia_utils_mac.h",
333 "ext/skia_utils_win.cc",
334 "ext/skia_utils_win.h",
335 "ext/vector_canvas.h",
336 "ext/vector_platform_device_emf_win.cc",
337 "ext/vector_platform_device_emf_win.h",
340 # The skia gypi values are relative to the skia_dir, so we need to rebase.
341 sources += gypi_skia_core.sources
342 sources += gypi_skia_effects.sources
343 sources += gypi_skia_utils.sources
344 sources += gypi_values.skia_library_sources
346 if (cpu_arch == "arm") {
348 "//third_party/skia/src/core/SkUtilsArm.cpp",
349 "//third_party/skia/src/core/SkUtilsArm.h",
354 if (skia_support_gpu) {
355 sources += gypi_skia_gpu.skgpu_sources
356 sources += gypi_skia_gpu.skgpu_null_gl_sources
359 # Remove unused util files include in utils.gypi
361 "//third_party/skia/include/utils/SkBoundaryPatch.h",
362 "//third_party/skia/include/utils/SkFrontBufferedStream.h",
363 "//third_party/skia/include/utils/SkCamera.h",
364 "//third_party/skia/include/utils/SkCanvasStateUtils.h",
365 "//third_party/skia/include/utils/SkCubicInterval.h",
366 "//third_party/skia/include/utils/SkCullPoints.h",
367 "//third_party/skia/include/utils/SkDebugUtils.h",
368 "//third_party/skia/include/utils/SkDumpCanvas.h",
369 "//third_party/skia/include/utils/SkEventTracer.h",
370 "//third_party/skia/include/utils/SkInterpolator.h",
371 "//third_party/skia/include/utils/SkLayer.h",
372 "//third_party/skia/include/utils/SkMeshUtils.h",
373 "//third_party/skia/include/utils/SkNinePatch.h",
374 "//third_party/skia/include/utils/SkParse.h",
375 "//third_party/skia/include/utils/SkParsePaint.h",
376 "//third_party/skia/include/utils/SkParsePath.h",
377 "//third_party/skia/include/utils/SkRandom.h",
378 "//third_party/skia/src/utils/SkBitmapHasher.cpp",
379 "//third_party/skia/src/utils/SkBitmapHasher.h",
380 "//third_party/skia/src/utils/SkBoundaryPatch.cpp",
381 "//third_party/skia/src/utils/SkFrontBufferedStream.cpp",
382 "//third_party/skia/src/utils/SkCamera.cpp",
383 "//third_party/skia/src/utils/SkCanvasStack.h",
384 "//third_party/skia/src/utils/SkCubicInterval.cpp",
385 "//third_party/skia/src/utils/SkCullPoints.cpp",
386 "//third_party/skia/src/utils/SkDumpCanvas.cpp",
387 "//third_party/skia/src/utils/SkFloatUtils.h",
388 "//third_party/skia/src/utils/SkInterpolator.cpp",
389 "//third_party/skia/src/utils/SkLayer.cpp",
390 "//third_party/skia/src/utils/SkMD5.cpp",
391 "//third_party/skia/src/utils/SkMD5.h",
392 "//third_party/skia/src/utils/SkMeshUtils.cpp",
393 "//third_party/skia/src/utils/SkNinePatch.cpp",
394 "//third_party/skia/src/utils/SkOSFile.cpp",
395 "//third_party/skia/src/utils/SkParse.cpp",
396 "//third_party/skia/src/utils/SkParseColor.cpp",
397 "//third_party/skia/src/utils/SkParsePath.cpp",
398 "//third_party/skia/src/utils/SkPathUtils.cpp",
399 "//third_party/skia/src/utils/SkSHA1.cpp",
400 "//third_party/skia/src/utils/SkSHA1.h",
401 "//third_party/skia/src/utils/SkTFitsIn.h",
402 "//third_party/skia/src/utils/SkTLogic.h",
404 # We don't currently need to change thread affinity, so leave out this complexity for now.
405 "//third_party/skia/src/utils/SkThreadUtils_pthread_mach.cpp",
406 "//third_party/skia/src/utils/SkThreadUtils_pthread_linux.cpp",
409 "//third_party/skia/src/fonts/SkGScalerContext.cpp",
410 "//third_party/skia/src/fonts/SkGScalerContext.h",
416 "//third_party/skia/src/utils/SkThreadUtils_pthread.cpp",
417 "//third_party/skia/src/utils/SkThreadUtils_pthread_other.cpp",
421 # Keeping _pthread.cpp and _pthread_other.cpp.
422 "//third_party/skia/src/utils/SkThreadUtils_win.cpp",
426 # need separate win section to handle chromes auto gn filter
427 # (build/config/BUILDCONFIG.gn)
431 "//third_party/skia/include/utils/win/SkAutoCoInitialize.h",
432 "//third_party/skia/include/utils/win/SkHRESULT.h",
433 "//third_party/skia/include/utils/win/SkIStream.h",
434 "//third_party/skia/include/utils/win/SkTScopedComPtr.h",
435 "//third_party/skia/src/utils/win/SkAutoCoInitialize.cpp",
436 "//third_party/skia/src/utils/win/SkIStream.cpp",
437 "//third_party/skia/src/utils/win/SkWGL_win.cpp",
441 if (is_android && (!enable_basic_printing && !enable_print_preview)) {
442 sources -= [ "ext/skia_utils_base.cc" ]
445 # Fixup skia library sources.
448 "//third_party/skia/src/ports/SkOSFile_posix.cpp",
449 "//third_party/skia/src/ports/SkTime_Unix.cpp",
450 "//third_party/skia/src/ports/SkTLS_pthread.cpp",
454 "//third_party/skia/src/ports/SkFontHost_win.cpp",
455 "//third_party/skia/src/ports/SkFontMgr_win_dw.cpp",
456 "//third_party/skia/src/ports/SkOSFile_win.cpp",
457 "//third_party/skia/src/ports/SkRemotableFontMgr_win_dw.cpp",
458 "//third_party/skia/src/ports/SkScalerContext_win_dw.cpp",
459 "//third_party/skia/src/ports/SkScalerContext_win_dw.h",
460 "//third_party/skia/src/ports/SkTLS_win.cpp",
461 "//third_party/skia/src/ports/SkTypeface_win_dw.cpp",
462 "//third_party/skia/src/ports/SkTypeface_win_dw.h",
467 "//third_party/skia/src/ports/SkFontConfigParser_android.cpp",
468 "//third_party/skia/src/ports/SkFontMgr_android.cpp",
472 sources -= [ "//third_party/skia/src/ports/SkFontHost_mac.cpp" ]
477 "//third_party/skia/src/ports/SkFontHost_fontconfig.cpp",
478 "//third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp",
479 "//third_party/skia/src/ports/SkFontConfigInterface_direct.cpp",
483 if (!is_linux && !is_android) {
485 "//third_party/skia/src/ports/SkFontHost_FreeType_common.cpp",
486 "//third_party/skia/src/ports/SkFontHost_FreeType.cpp",
490 # Select the right BitmapPlatformDevice.
493 "ext/bitmap_platform_device_win.cc",
494 "ext/bitmap_platform_device_win.h",
498 "ext/bitmap_platform_device_mac.cc",
499 "ext/bitmap_platform_device_mac.h",
501 } else if (use_cairo) {
503 "ext/bitmap_platform_device_cairo.cc",
504 "ext/bitmap_platform_device_cairo.h",
508 "ext/bitmap_platform_device_skia.cc",
509 "ext/bitmap_platform_device_skia.h",
514 # Skia won't compile with some of the more strict clang warnings.
516 # SkASSERT(!"sk_out_of_memory");
517 configs -= [ "//build/config/clang:extra_warnings" ]
520 configs -= [ "//build/config/compiler:chromium_code" ]
522 ":skia_library_config",
523 "//build/config/compiler:no_chromium_code",
525 public_configs = [ ":skia_config" ]
530 "//base/third_party/dynamic_annotations",
531 "//third_party/zlib",
536 # Some files define WIN32_LEAN_AND_MEAN and we want to avoid a duplicate
537 # definition warning.
538 "//build/config/win:lean_and_mean",
544 "//build/config/linux:fontconfig",
545 "//build/config/linux:freetype2",
548 configs += [ "//build/config/linux:pangocairo" ]
550 deps += [ "//third_party/icu:icuuc" ]
554 set_sources_assignment_filter([])
555 sources += [ "ext/platform_device_linux.cc" ]
556 set_sources_assignment_filter(sources_assignment_filter)
558 "//third_party/expat",
559 "//third_party/freetype",
560 "//third_party/android_tools:cpu_features",
564 if (skia_support_pdf) {
565 deps += [ "//third_party/sfntly" ]
566 sources += gypi_skia_pdf.sources
569 if (is_android && !is_debug) {
570 configs -= [ "//build/config/compiler:optimize" ]
571 configs += [ "//build/config/compiler:optimize_max" ]
575 # Separated out so it can be compiled with different flags for SSE.
576 source_set("skia_opts") {
580 if (cpu_arch == "x86" || cpu_arch == "x64") {
581 sources = gypi_skia_opts.sse2_sources + gypi_skia_opts.ssse3_sources +
582 gypi_skia_opts.sse41_sources +
585 "ext/convolver_SSE2.cc",
588 if (is_linux || is_mac) {
589 cflags += [ "-msse4.1" ]
591 } else if (cpu_arch == "arm") {
592 # The assembly uses the frame pointer register (r7 in Thumb/r11 in
593 # ARM), the compiler doesn't like that.
594 cflags += [ "-fomit-frame-pointer" ]
596 if (arm_version >= 7) {
597 sources = gypi_skia_opts.armv7_sources
598 if (arm_use_neon || arm_optionally_use_neon) {
599 sources += gypi_skia_opts.neon_sources
601 # Root build config sets -mfpu=$arm_fpu, which we expect to be neon
604 configs -= [ "//build/config/compiler:compiler_arm_fpu" ]
605 cflags += [ "-mfpu=neon" ]
609 sources = gypi_skia_opts.none_sourcees
611 } else if (cpu_arch == "mipsel") {
612 cflags += [ "-fomit-frame-pointer" ]
613 sources = gypi_skia_opts.none_sources
615 assert(false, "Need to port cpu specific stuff from skia_library_opts.gyp")
618 if (is_android && !is_debug) {
619 configs -= [ "//build/config/compiler:optimize" ]
620 configs += [ "//build/config/compiler:optimize_max" ]
623 configs -= [ "//build/config/compiler:chromium_code" ]
626 ":skia_library_config",
627 "//build/config/compiler:no_chromium_code",
634 visibility = [ ":skia" ]
637 test("skia_unittests") {
639 "ext/analysis_canvas_unittest.cc",
640 "ext/bitmap_platform_device_mac_unittest.cc",
641 "ext/convolver_unittest.cc",
642 "ext/image_operations_unittest.cc",
643 "ext/pixel_ref_utils_unittest.cc",
644 "ext/platform_canvas_unittest.cc",
645 "ext/recursive_gaussian_convolution_unittest.cc",
646 "ext/refptr_unittest.cc",
647 "ext/skia_utils_ios_unittest.mm",
648 "ext/skia_utils_mac_unittest.mm",
649 "ext/vector_canvas_unittest.cc",
653 sources -= [ "ext/vector_canvas_unittest.cc" ]
656 if (!is_win && !is_mac) {
657 sources -= [ "ext/platform_canvas_unittest.cc" ]
663 "//base/test:run_all_unittests",