• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# GYP file to build unit tests.
2{
3  'includes': [
4    'apptype_console.gypi',
5  ],
6  'targets': [
7    {
8      'target_name': 'tests',
9      'type': 'executable',
10      'includes': [
11        'pathops_unittest.gypi',
12        'tests.gypi',
13      ],
14      'dependencies': [ 'tools.gyp:crash_handler' ],
15      'sources': [
16        '../tests/skia_test.cpp',
17      ],
18      'conditions': [
19        [ 'skia_android_framework == 1', {
20          'libraries': [
21            '-lskia',
22          ],
23          'libraries!': [
24            '-lz',
25            '-llog',
26          ],
27        }],
28        [ 'skia_gpu == 1', {
29          'include_dirs': [
30            '../src/gpu',
31          ],
32        }],
33      ],
34    },
35  ],
36}
37