"README.md" did not exist on "df22718fcd569eac0db794c8078e9e3585742030"
everything.gyp 1005 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Build EVERYTHING provided by Skia.
# (Start with the "most" target, and then add targets that we intentionally
# left out of "most".  See most.gyp for an explanation of which targets are
# left out of "most".)
#
# We used to call this the 'all' target, but in SOME cases that
# conflicted with an automatically-generated 'all' target.
# See https://code.google.com/p/skia/issues/detail?id=932
#
{
  'targets': [
    {
      'target_name': 'everything',
      'type': 'none',
15 16 17
      'dependencies': [
        'most.gyp:most',
      ],
18
      'conditions': [
19
        ['skia_os in ("ios", "android", "chromeos") or (skia_os == "mac" and skia_arch_width == 32)', {
20 21
          # debugger is not supported on this platform
        }, {
22 23 24 25
          'dependencies': [
            'debugger.gyp:debugger',
            'pdfviewer.gyp:pdfviewer',
            ],
26
        }],
27 28 29 30
        # DM assumes you've got a GPU.
        ['skia_gpu == 1', {
          'dependencies': [ 'dm.gyp:dm' ],
        }],
31 32 33 34
      ],
    },
  ],
}