blob: bd90949417ca7ca62f087a51c05e745d905affd4 [file] [log] [blame]
epoger@google.com9c875d32012-10-18 16:10:56 +00001# 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.orgf84722e2014-02-24 20:22:34 +00007 'variables': {
8 'skia_skip_gui%': 0,
9 },
epoger@google.com9c875d32012-10-18 16:10:56 +000010 'targets': [
11 {
12 'target_name': 'most',
13 'type': 'none',
14 'dependencies': [
15 # The minimal set of static libraries for basic Skia functionality.
djsollen@google.com52f02972013-06-03 12:10:19 +000016 'skia_lib.gyp:skia_lib',
epoger@google.com9c875d32012-10-18 16:10:56 +000017
18 'bench.gyp:bench',
19 'gm.gyp:gm',
20 'SampleApp.gyp:SampleApp',
21 'tests.gyp:tests',
22 'tools.gyp:tools',
caryclark@google.comdb60de72013-04-11 12:33:23 +000023 'pathops_unittest.gyp:*',
edisonn@google.comdc1d7272013-06-10 21:10:50 +000024# 'pdfviewer.gyp:pdfviewer',
commit-bot@chromium.org787227d2014-03-26 21:26:15 +000025 'dm.gyp:dm',
epoger@google.com9c875d32012-10-18 16:10:56 +000026 ],
27 'conditions': [
28 ['skia_os == "android"', {
djsollen@google.comcc95b1a2013-08-12 12:30:04 +000029 'dependencies': [ 'android_system.gyp:SampleApp_APK' ],
epoger@google.com9c875d32012-10-18 16:10:56 +000030 }],
commit-bot@chromium.orgae0054e2014-04-05 01:13:43 +000031 ['skia_os == "ios"', {
32 'dependencies!': [ 'SampleApp.gyp:SampleApp' ],
33 }],
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +000034 [ 'skia_skip_gui',
35 {
36 'dependencies!': [
37 'SampleApp.gyp:SampleApp',
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +000038 ]
39 }
40 ]
epoger@google.com9c875d32012-10-18 16:10:56 +000041 ],
42 },
43 ],
44}