epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 1 | # Build ALMOST everything provided by Skia; this should be the default target. |
| 2 | # |
| 3 | # This omits the following targets that many developers won't want to build: |
| 4 | # - debugger: this requires QT to build |
| 5 | # |
| 6 | { |
commit-bot@chromium.org | f84722e | 2014-02-24 20:22:34 +0000 | [diff] [blame] | 7 | 'variables': { |
| 8 | 'skia_skip_gui%': 0, |
| 9 | }, |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 10 | 'targets': [ |
| 11 | { |
| 12 | 'target_name': 'most', |
| 13 | 'type': 'none', |
| 14 | 'dependencies': [ |
| 15 | # The minimal set of static libraries for basic Skia functionality. |
djsollen@google.com | 52f0297 | 2013-06-03 12:10:19 +0000 | [diff] [blame] | 16 | 'skia_lib.gyp:skia_lib', |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 17 | |
mtklein | f372321 | 2014-06-25 14:08:00 -0700 | [diff] [blame] | 18 | 'bench.gyp:*', |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 19 | 'gm.gyp:gm', |
| 20 | 'SampleApp.gyp:SampleApp', |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 21 | 'tools.gyp:tools', |
caryclark@google.com | db60de7 | 2013-04-11 12:33:23 +0000 | [diff] [blame] | 22 | 'pathops_unittest.gyp:*', |
caryclark | 19eb3b2 | 2014-07-18 05:08:14 -0700 | [diff] [blame] | 23 | 'pathops_skpclip.gyp:*', |
edisonn@google.com | dc1d727 | 2013-06-10 21:10:50 +0000 | [diff] [blame] | 24 | # 'pdfviewer.gyp:pdfviewer', |
commit-bot@chromium.org | 787227d | 2014-03-26 21:26:15 +0000 | [diff] [blame] | 25 | 'dm.gyp:dm', |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 26 | ], |
| 27 | 'conditions': [ |
| 28 | ['skia_os == "android"', { |
djsollen@google.com | cc95b1a | 2013-08-12 12:30:04 +0000 | [diff] [blame] | 29 | 'dependencies': [ 'android_system.gyp:SampleApp_APK' ], |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 30 | }], |
commit-bot@chromium.org | ae0054e | 2014-04-05 01:13:43 +0000 | [diff] [blame] | 31 | ['skia_os == "ios"', { |
| 32 | 'dependencies!': [ 'SampleApp.gyp:SampleApp' ], |
caryclark | 936b734 | 2014-07-11 12:14:51 -0700 | [diff] [blame] | 33 | 'dependencies': ['iOSShell.gyp:iOSShell' ], |
commit-bot@chromium.org | ae0054e | 2014-04-05 01:13:43 +0000 | [diff] [blame] | 34 | }], |
mtklein | d6043b2 | 2014-06-16 20:21:06 -0700 | [diff] [blame] | 35 | ['skia_os == "mac" or skia_os == "linux"', { |
| 36 | 'dependencies': [ 'nanomsg.gyp:*' ], |
| 37 | }], |
commit-bot@chromium.org | f84722e | 2014-02-24 20:22:34 +0000 | [diff] [blame] | 38 | [ 'skia_skip_gui', |
| 39 | { |
| 40 | 'dependencies!': [ |
| 41 | 'SampleApp.gyp:SampleApp', |
commit-bot@chromium.org | f84722e | 2014-02-24 20:22:34 +0000 | [diff] [blame] | 42 | ] |
| 43 | } |
| 44 | ] |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 45 | ], |
| 46 | }, |
| 47 | ], |
| 48 | } |