blob: ab99e929e2496628ac3e4e24c8a89e92b634eda8 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# 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}