servo-skia 0.30000007.0

2D graphic library for drawing Text, Geometries, and Images
Documentation
# GYP file to build unit tests.
{
  'includes': [
    'apptype_console.gypi',
  ],
  'targets': [
    {
      'target_name': 'tests',
      'type': 'executable',
      'includes': [
        'pathops_unittest.gypi',
        'tests.gypi',
      ],
      'sources': [
        '../tests/skia_test.cpp',
      ],
      'conditions': [
        [ 'skia_android_framework == 1', {
          'libraries': [
            '-lskia',
          ],
          'libraries!': [
            '-lz',
            '-llog',
          ],
        }],
        [ 'skia_gpu == 1', {
          'include_dirs': [
            '../src/gpu',
          ],
        }],
      ],
    },
  ],
}