# conditions used in both common.gypi and skia.gyp in chromium # { 'defines': [ 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', 'SK_SUPPORT_GPU=<(skia_gpu)', 'SK_SUPPORT_OPENCL=<(skia_opencl)', 'SK_FORCE_DISTANCEFIELD_FONTS=<(skia_force_distancefield_fonts)', ], 'conditions' : [ [ 'skia_arch_type == "arm64"', { 'cflags': [ '-ffp-contract=off', ], }], [ 'skia_os == "win"', { 'defines': [ 'SK_BUILD_FOR_WIN32', '_CRT_SECURE_NO_WARNINGS', 'GR_GL_FUNCTION_TYPE=__stdcall', ], 'msvs_cygwin_shell': 0, 'msvs_settings': { 'VCCLCompilerTool': { 'WarningLevel': '3', 'ProgramDataBaseFileName': '$(OutDir)\\$(ProjectName).pdb', 'DebugInformationFormat': '3', 'ExceptionHandling': '0', 'AdditionalOptions': [ '/MP', ], }, 'VCLinkerTool': { 'LargeAddressAware': 2, # 2 means "Yes, please let me use more RAM on 32-bit builds." 'AdditionalDependencies': [ 'OpenGL32.lib', 'usp10.lib', # Prior to gyp r1584, the following were included automatically. 'kernel32.lib', 'gdi32.lib', 'winspool.lib', 'comdlg32.lib', 'advapi32.lib', 'shell32.lib', 'ole32.lib', 'oleaut32.lib', 'user32.lib', 'uuid.lib', 'odbc32.lib', 'odbccp32.lib', 'DelayImp.lib', ], }, }, 'configurations': { 'Debug': { 'msvs_settings': { 'VCCLCompilerTool': { 'DebugInformationFormat': '4', # editAndContiue (/ZI) 'Optimization': '0', # optimizeDisabled (/Od) 'PreprocessorDefinitions': ['_DEBUG'], 'RuntimeLibrary': '3', # rtMultiThreadedDebugDLL (/MDd) 'RuntimeTypeInfo': 'false', # /GR- }, 'VCLinkerTool': { 'GenerateDebugInformation': 'true', # /DEBUG 'LinkIncremental': '2', # /INCREMENTAL }, }, }, 'Release': { 'msvs_settings': { 'VCCLCompilerTool': { 'DebugInformationFormat': '3', # programDatabase (/Zi) 'Optimization': '<(skia_release_optimization_level)', 'WholeProgramOptimization': 'true', #/GL # Changing the floating point model requires rebaseling gm images #'FloatingPointModel': '2', # fast (/fp:fast) 'FavorSizeOrSpeed': '1', # speed (/Ot) 'PreprocessorDefinitions': ['NDEBUG'], 'RuntimeLibrary': '2', # rtMultiThreadedDLL (/MD) 'EnableEnhancedInstructionSet': '2',# /arch:SSE2 'RuntimeTypeInfo': 'false', # /GR- }, 'VCLinkerTool': { 'GenerateDebugInformation': 'true', # /DEBUG 'LinkTimeCodeGeneration': '1', # useLinkTimeCodeGeneration /LTCG }, 'VCLibrarianTool': { 'LinkTimeCodeGeneration': 'true', # useLinkTimeCodeGeneration /LTCG }, }, }, }, 'conditions' : [ # Gyp's ninja generator depends on these specially named # configurations to build 64-bit on Windows. # See http://skbug.com/2348 # # We handle the 64- vs 32-bit variations elsewhere, so I think it's # OK for us to just make these inherit non-archwidth-specific # configurations without modification. # # See http://skbug.com/2442 : These targets cause problems in the # MSVS build, so only include them if gyp is generating a ninja build. [ '"ninja" in "= 7', { 'cflags': [ '-march=armv7-a', ], 'ldflags': [ '-march=armv7-a', ], 'conditions': [ [ 'arm_neon == 1', { 'defines': [ '__ARM_HAVE_NEON', ], 'cflags': [ '-mfpu=neon', ], }], [ 'arm_neon_optional == 1', { 'defines': [ '__ARM_HAVE_OPTIONAL_NEON_SUPPORT', ], }], [ 'skia_os != "chromeos"', { 'cflags': [ '-mfloat-abi=softfp', ], }], ], }], ], }, ], ['skia_android_framework', { 'cflags': [ # Skia does not enforce this usage pattern so we disable it here to avoid # unecessary log spew when building '-Wno-unused-parameter', # Android's -D_FORTIFY_SOURCE=2 extensions are incompatibile with SkString. # Revert to -D_FORTIFY_SOURCE=1 '-U_FORTIFY_SOURCE', '-D_FORTIFY_SOURCE=1', ], # Remove flags which are either unnecessary or problematic for the # Android framework build. Many of these flags are removed simply because # they were not previously in the Android framework makefile, and we did # did not intend to add them when generating the makefile. # TODO (scroggo): Investigate whether any of these flags are actually # needed/would be beneficial. 'cflags!': [ # Android has one makefile, used for both debugging (after manual # modification) and release. Turn off debug info by default. '-g', '-march=armv7-a', '-mthumb', '-mfpu=neon', '-mfloat-abi=softfp', # This flag is not supported by Android build system. '-Wno-c++11-extensions', '-fno-exceptions', '-fstrict-aliasing', # Remove flags to turn on warnings, since most people building Android # are not focused on Skia and do not need the extra warning info. '-Wall', '-Wextra', '-Winit-self', '-Wpointer-arith', ], 'cflags_cc!': [ '-fno-rtti', '-Wnon-virtual-dtor', ], 'defines': [ 'DCT_IFAST_SUPPORTED', # using freetype's embolden allows us to adjust fake bold settings at # draw-time, at which point we know which SkTypeface is being drawn 'SK_USE_FREETYPE_EMBOLDEN', 'SK_SFNTLY_SUBSETTER "sample/chromium/font_subsetter.h"', # When built as part of the system image we can enable certian non-NDK # compliant optimizations. 'SK_BUILD_FOR_ANDROID_FRAMEWORK', # Optimizations for chromium (m30) 'GR_GL_CUSTOM_SETUP_HEADER "gl/GrGLConfig_chrome.h"', 'IGNORE_ROT_AA_RECT_OPT', # Disable this check because it is too strict for some chromium-specific # subclasses of SkPixelRef. See bug: crbug.com/171776. 'SK_DISABLE_PIXELREF_LOCKCOUNT_BALANCE_CHECK', 'SkLONGLONG int64_t', 'SK_DEFAULT_FONT_CACHE_LIMIT (768 * 1024)', 'SK_ATOMICS_PLATFORM_H "../../src/ports/SkAtomics_android.h"', 'SK_MUTEX_PLATFORM_H "../../src/ports/SkMutex_pthread.h"', # FIXME: b/13729784: Need to rework LayerRasterizer.cpp 'SK_SUPPORT_LEGACY_LAYERRASTERIZER_API', # Temporary until https:#googleplex-android-review.git.corp.google.com/#/c/442220/ # lands. 'SK_SUPPORT_LEGACY_GETTOTALCLIP', # Still need to switch Android to the new name for N32. 'kNative_8888_SkColorType kN32_SkColorType', 'SK_SUPPORT_LEGACY_PICTURE_CAN_RECORD', 'SK_SUPPORT_DEPRECATED_RECORD_FLAGS', 'SK_SUPPORT_LEGACY_DERIVED_PICTURE_CLASSES', 'SK_SUPPORT_LEGACY_PICTURE_HEADERS', 'SK_SUPPORT_LEGACY_BLURDRAWLOOPERCONSTRUCTORS', 'SK_SUPPORT_LEGACY_BLURMASKFILTER_STYLE', # Needed until we fix skbug.com/2440. 'SK_SUPPORT_LEGACY_CLIPTOLAYERFLAG', # Transitional, for deprecated SkCanvas::SaveFlags methods. 'SK_ATTR_DEPRECATED=SK_NOTHING_ARG1', ], }], [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "nacl", "chromeos"]', { 'defines': [ 'SK_SAMPLES_FOR_X', 'SK_BUILD_FOR_UNIX', ], 'configurations': { 'Coverage': { 'cflags': ['--coverage'], 'ldflags': ['--coverage'], }, 'Debug': { }, 'Release': { 'cflags': [ '-O<(skia_release_optimization_level)', ], 'defines': [ 'NDEBUG' ], }, }, 'conditions' : [ [ 'skia_shared_lib', { 'cflags': [ '-fPIC', ], 'defines': [ 'SKIA_DLL', 'SKIA_IMPLEMENTATION=1', ], }], [ 'skia_os == "nacl"', { 'defines': [ 'SK_BUILD_FOR_NACL', ], 'variables': { 'nacl_sdk_root': '