blob: 319547e2fe930033354476cf58fab6ed897588cc [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.
13 'skia_base_libs.gyp:skia_base_libs',
14
15 'bench.gyp:bench',
16 'gm.gyp:gm',
17 'SampleApp.gyp:SampleApp',
18 'tests.gyp:tests',
19 'tools.gyp:tools',
20 ],
21 'conditions': [
22 ['skia_os == "android"', {
23 'dependencies': [ 'android_system.gyp:SkiaAndroidApp' ],
24 }],
25 ],
26 },
27 ],
28}
29
30# Local Variables:
31# tab-width:2
32# indent-tabs-mode:nil
33# End:
34# vim: set expandtab tabstop=2 shiftwidth=2: