summaryrefslogtreecommitdiff
path: root/test/additional-targets/src/dir1/actions.gyp
blob: 000315e631b7718445f0c0af835f362fd108106b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  'targets': [
    {
      'target_name': 'action1_target',
      'type': 'none',
      'suppress_wildcard': 1,
      'actions': [
        {
          'action_name': 'action1',
          'inputs': [
            'emit.py',
          ],
          'outputs': [
            '<(PRODUCT_DIR)/out.txt',
          ],
          'action': ['python', 'emit.py', '<(PRODUCT_DIR)/out.txt'],
          'msvs_cygwin_shell': 0,
        },
      ],
    },
  ],
}