Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / tools / gyp / test / msvs / multiple_actions_error_handling / actions.gyp
1 # Copyright (c) 2014 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': 'actions-test',
9       'type': 'none',
10       'actions': [
11         {
12           'action_name': 'first action (fails)',
13           'inputs': [
14             'action_fail.py',
15           ],
16           'outputs': [
17             'ALWAYS_OUT_OF_DATE',
18           ],
19           'action': [
20             'python', '<@(_inputs)'
21           ],
22           'msvs_cygwin_shell': 0,
23         },
24         {
25           'action_name': 'second action (succeeds)',
26           'inputs': [
27             'action_succeed.py',
28           ],
29           'outputs': [
30             'ALWAYS_OUT_OF_DATE',
31           ],
32           'action': [
33             'python', '<@(_inputs)'
34           ],
35           'msvs_cygwin_shell': 0,
36         },
37       ],
38     },
39   ],
40 }