Home | History | Annotate | Download | only in gyp
      1 # Creates a Makefile that is capable of building all executable targets.
      2 #
      3 # To build on Linux:
      4 #  ./gyp_skia && make all
      5 #
      6 # Building on other platforms not tested yet.
      7 #
      8 
      9 #
     10 #
     11 #
     12 #
     13 #
     14 # THIS IS DEPRECATED IN FAVOR OF trunk/skia.gyp !!!
     15 # Questions? Contact epoger (a] google.com
     16 #
     17 #
     18 #
     19 #
     20 
     21 {
     22   'targets': [
     23     {
     24       'target_name': 'all',
     25       'type': 'none',
     26       'dependencies': [
     27         'bench.gyp:bench',
     28         'gm.gyp:gm',
     29         'SampleApp.gyp:SampleApp',
     30         'tests.gyp:tests',
     31         'tools.gyp:tools',
     32       ],
     33     },
     34   ],
     35 }
     36 
     37 # Local Variables:
     38 # tab-width:2
     39 # indent-tabs-mode:nil
     40 # End:
     41 # vim: set expandtab tabstop=2 shiftwidth=2:
     42