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 | 'SampleApp.gyp:SampleApp', |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 20 | 'tools.gyp:tools', |
caryclark@google.com | db60de7 | 2013-04-11 12:33:23 +0000 | [diff] [blame] | 21 | 'pathops_unittest.gyp:*', |
caryclark | 19eb3b2 | 2014-07-18 05:08:14 -0700 | [diff] [blame] | 22 | 'pathops_skpclip.gyp:*', |
edisonn@google.com | dc1d727 | 2013-06-10 21:10:50 +0000 | [diff] [blame] | 23 | # 'pdfviewer.gyp:pdfviewer', |
commit-bot@chromium.org | 787227d | 2014-03-26 21:26:15 +0000 | [diff] [blame] | 24 | 'dm.gyp:dm', |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 25 | ], |
| 26 | 'conditions': [ |
| 27 | ['skia_os == "android"', { |
djsollen@google.com | cc95b1a | 2013-08-12 12:30:04 +0000 | [diff] [blame] | 28 | 'dependencies': [ 'android_system.gyp:SampleApp_APK' ], |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 29 | }], |
commit-bot@chromium.org | ae0054e | 2014-04-05 01:13:43 +0000 | [diff] [blame] | 30 | ['skia_os == "ios"', { |
jcgregorio | 3b27ade | 2014-11-13 08:06:40 -0800 | [diff] [blame] | 31 | 'dependencies!': [ 'SampleApp.gyp:SampleApp' ], |
caryclark | 936b734 | 2014-07-11 12:14:51 -0700 | [diff] [blame] | 32 | 'dependencies': ['iOSShell.gyp:iOSShell' ], |
commit-bot@chromium.org | ae0054e | 2014-04-05 01:13:43 +0000 | [diff] [blame] | 33 | }], |
mtklein | d6043b2 | 2014-06-16 20:21:06 -0700 | [diff] [blame] | 34 | ['skia_os == "mac" or skia_os == "linux"', { |
| 35 | 'dependencies': [ 'nanomsg.gyp:*' ], |
| 36 | }], |
commit-bot@chromium.org | f84722e | 2014-02-24 20:22:34 +0000 | [diff] [blame] | 37 | [ 'skia_skip_gui', |
| 38 | { |
| 39 | 'dependencies!': [ |
| 40 | 'SampleApp.gyp:SampleApp', |
commit-bot@chromium.org | f84722e | 2014-02-24 20:22:34 +0000 | [diff] [blame] | 41 | ] |
| 42 | } |
| 43 | ] |
epoger@google.com | 9c875d3 | 2012-10-18 16:10:56 +0000 | [diff] [blame] | 44 | ], |
| 45 | }, |
| 46 | ], |
| 47 | } |