blob: 8a8b85da2fcbc02fa1a3eeef14914b932ce99d7a [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 }],
epoger@google.com9c875d32012-10-18 16:10:56 +000028 ],
29 },
30 ],
31}
32
33# Local Variables:
34# tab-width:2
35# indent-tabs-mode:nil
36# End:
37# vim: set expandtab tabstop=2 shiftwidth=2: