blob: b914bc5f89440c7b861cb3b9181145355f95aec8 [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{
7 'targets': [
8 {
9 'target_name': 'most',
10 'type': 'none',
11 'dependencies': [
12 # The minimal set of static libraries for basic Skia functionality.
djsollen@google.com52f02972013-06-03 12:10:19 +000013 'skia_lib.gyp:skia_lib',
epoger@google.com9c875d32012-10-18 16:10:56 +000014
15 'bench.gyp:bench',
16 'gm.gyp:gm',
17 'SampleApp.gyp:SampleApp',
18 'tests.gyp:tests',
19 'tools.gyp:tools',
caryclark@google.comdb60de72013-04-11 12:33:23 +000020 'pathops_unittest.gyp:*',
caryclark@google.coma2bbc6e2013-11-01 17:36:03 +000021 'skpskgr_test.gyp:*',
edisonn@google.comdc1d7272013-06-10 21:10:50 +000022# 'pdfviewer.gyp:pdfviewer',
epoger@google.com9c875d32012-10-18 16:10:56 +000023 ],
24 'conditions': [
25 ['skia_os == "android"', {
djsollen@google.comcc95b1a2013-08-12 12:30:04 +000026 'dependencies': [ 'android_system.gyp:SampleApp_APK' ],
epoger@google.com9c875d32012-10-18 16:10:56 +000027 }],
commit-bot@chromium.orgd9c4dfb2014-01-08 16:52:42 +000028 # DM assumes you've got a GPU.
29 ['skia_gpu == 1', {
30 'dependencies': [ 'dm.gyp:dm' ],
31 }],
epoger@google.com9c875d32012-10-18 16:10:56 +000032 ],
33 },
34 ],
35}