blob: 0f3f37599bf34e64643b0d5b6ff228e97a46a13e [file] [log] [blame]
epoger@google.com1e8e0562011-06-07 14:48:41 +00001# Top-level gyp configuration for Skia.
2#
3# Projects that use Skia should depend on one or more of the targets
4# defined here.
5#
6# More targets are defined within the gyp/ directory, but those are
7# not intended for external use and may change without notice.
8#
9# Full documentation at http://code.google.com/p/skia/wiki/DocRoot
10#
11{
12 'targets': [
13 {
14 # Use this target to build everything provided by Skia.
15 'target_name': 'all',
16 'type': 'none',
17 'dependencies': [
borenet@google.comefb1d772012-10-10 19:45:51 +000018 # The minimal set of static libraries for basic Skia functionality.
19 'gyp/skia_base_libs.gyp:skia_base_libs',
20
epoger@google.com1e8e0562011-06-07 14:48:41 +000021 'gyp/bench.gyp:bench',
22 'gyp/gm.gyp:gm',
epoger@google.com9c875d32012-10-18 16:10:56 +000023 'gyp/most.gyp:most',
epoger@google.com1e8e0562011-06-07 14:48:41 +000024 'gyp/SampleApp.gyp:SampleApp',
25 'gyp/tests.gyp:tests',
26 'gyp/tools.gyp:tools',
27 ],
borenet@google.comdd3d08e2012-06-27 19:04:39 +000028 'conditions': [
djsollen@google.com2d6535a2012-10-12 19:44:35 +000029 ['skia_os == "android"', {
borenet@google.comdd3d08e2012-06-27 19:04:39 +000030 'dependencies': [
31 'gyp/android_system.gyp:SkiaAndroidApp',
32 ],
33 }],
fmalita@google.combacfcfb2012-09-27 13:34:34 +000034
35 # The debugger is not supported for iOS, Android and 32-bit Mac builds.
36 ['skia_os != "ios" and skia_os != "android" and (skia_os != "mac" or skia_arch_width == 64)', {
37 'dependencies': [ 'gyp/debugger.gyp:debugger' ],
38 }],
borenet@google.comdd3d08e2012-06-27 19:04:39 +000039 ],
epoger@google.com1e8e0562011-06-07 14:48:41 +000040 },
epoger@google.com1e8e0562011-06-07 14:48:41 +000041 ],
42}
43
44# Local Variables:
45# tab-width:2
46# indent-tabs-mode:nil
47# End:
48# vim: set expandtab tabstop=2 shiftwidth=2: