Index: test/actions-multiple/src/actions.gyp |
=================================================================== |
--- test/actions-multiple/src/actions.gyp (revision 0) |
+++ test/actions-multiple/src/actions.gyp (revision 0) |
@@ -0,0 +1,56 @@ |
+# Copyright (c) 2009 Google Inc. All rights reserved. |
jeanluc1
2011/02/01 02:00:08
2011 please.
bradn
2011/02/01 03:02:51
Done.
|
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+{ |
+ 'targets': [ |
+ { |
+ 'target_name': 'multiple_action_target', |
+ 'type': 'none', |
+ 'actions': [ |
+ { |
+ 'action_name': 'action1', |
+ 'inputs': [ |
+ 'input.txt', |
+ ], |
+ 'outputs': [ |
+ 'output1.txt', |
+ ], |
+ 'action': [ |
+ 'python', 'copy.py', '<(_inputs)', '<(_outputs)', |
+ ], |
+ # Allows the test to run without hermetic cygwin on windows. |
+ 'msvs_cygwin_shell': 0, |
+ }, |
+ { |
+ 'action_name': 'action2', |
+ 'inputs': [ |
+ 'input.txt', |
+ ], |
+ 'outputs': [ |
+ 'output2.txt', |
+ ], |
+ 'action': [ |
+ 'python', 'copy.py', '<(_inputs)', '<(_outputs)', |
+ ], |
+ # Allows the test to run without hermetic cygwin on windows. |
+ 'msvs_cygwin_shell': 0, |
+ }, |
+ { |
+ 'action_name': 'action3', |
+ 'inputs': [ |
+ 'input.txt', |
+ ], |
+ 'outputs': [ |
+ 'output3.txt', |
+ ], |
+ 'action': [ |
+ 'python', 'copy.py', '<(_inputs)', '<(_outputs)', |
+ ], |
+ # Allows the test to run without hermetic cygwin on windows. |
+ 'msvs_cygwin_shell': 0, |
+ }, |
+ ], |
+ }, |
+ ], |
+} |
Property changes on: test\actions-multiple\src\actions.gyp |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |