Home | History | Annotate | Download | only in gyp-defines
      1 # Copyright (c) 2012 Google Inc. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 {
      6   'targets': [
      7     {
      8       'target_name': 'test_target',
      9       'type': 'none',
     10       'actions': [
     11         {
     12           'action_name': 'test_action',
     13           'inputs': [],
     14           'outputs': [ 'action.txt' ],
     15           'action': [
     16             'python',
     17             'echo.py',
     18             '<(key)',
     19             '<(_outputs)',
     20           ],
     21           'msvs_cygwin_shell': 0,
     22         }
     23       ],
     24     },
     25   ],
     26 }
     27