aboutsummaryrefslogtreecommitdiffstats
path: root/gyp/all.gyp
blob: 37844bb22494a53a54a33999b8721a8be855c3ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Creates a Makefile that is capable of building all executable targets.
#
# To build on Linux:
#  ./gyp_skia && make all
#
# Building on other platforms not tested yet.
#

#
#
#
#
#
# THIS IS DEPRECATED IN FAVOR OF trunk/skia.gyp !!!
# Questions? Contact epoger@google.com
#
#
#
#

{
  'targets': [
    {
      'target_name': 'all',
      'type': 'none',
      'dependencies': [
        'bench.gyp:bench',
        'gm.gyp:gm',
        'SampleApp.gyp:SampleApp',
        'tests.gyp:tests',
        'tools.gyp:tools',
      ],
    },
  ],
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: