blob: cfe528e8d06794efb0ef299135618f3b3af8749a [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:*',
edisonn@google.comdc1d7272013-06-10 21:10:50 +000021# 'pdfviewer.gyp:pdfviewer',
epoger@google.com9c875d32012-10-18 16:10:56 +000022 ],
23 'conditions': [
24 ['skia_os == "android"', {
djsollen@google.comcc95b1a2013-08-12 12:30:04 +000025 'dependencies': [ 'android_system.gyp:SampleApp_APK' ],
epoger@google.com9c875d32012-10-18 16:10:56 +000026 }],
epoger@google.com9c875d32012-10-18 16:10:56 +000027 ],
28 },
29 ],
30}
31
32# Local Variables:
33# tab-width:2
34# indent-tabs-mode:nil
35# End:
36# vim: set expandtab tabstop=2 shiftwidth=2: