Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(610)

Side by Side Diff: test/msvs/multiple_actions_error_handling/actions.gyp

Issue 335273006: msvs: ensure that failing actions make the build fail with multiple actions (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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 }
OLDNEW
« no previous file with comments | « test/msvs/multiple_actions_error_handling/action_succeed.py ('k') | test/msvs/multiple_actions_error_handling/gyptest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698