blob: b61e7e8ea5834287ea78d9de71d7b4543cd9b436 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# Copyright (c) 2011 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': 'target1',
9 'type': 'none',
10 'actions': [
11 {
12 'action_name': 'intermediate',
13 'inputs': [],
14 'outputs': [
15 '<(INTERMEDIATE_DIR)/intermediate_out.txt',
16 'outfile.txt',
17 ],
18 'action': [
19 'python', 'script.py', 'target1', '<(_outputs)',
20 ],
21 # Allows the test to run without hermetic cygwin on windows.
22 'msvs_cygwin_shell': 0,
23 },
24 {
25 'action_name': 'shared_intermediate',
26 'inputs': [
27 'shared_infile.txt',
28 ],
29 'outputs': [
30 '<(SHARED_INTERMEDIATE_DIR)/intermediate_out.txt',
31 'shared_outfile.txt',
32 ],
33 'action': [
34 'python', 'script.py', 'shared_target1', '<(_outputs)',
35 ],
36 # Allows the test to run without hermetic cygwin on windows.
37 'msvs_cygwin_shell': 0,
38 },
39 ],
40 },
41 ],
42}