Chromium Code Reviews| Index: test/actions-depfile/depfile.gyp |
| diff --git a/test/actions-depfile/depfile.gyp b/test/actions-depfile/depfile.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f1b9b810fe164b461cbcfcc3c26ea02e21f0205f |
| --- /dev/null |
| +++ b/test/actions-depfile/depfile.gyp |
| @@ -0,0 +1,26 @@ |
| +# Copyright (c) 2014 Google Inc. All rights reserved. |
|
bradn
2015/01/15 01:07:07
2015
teravest
2015/01/15 15:36:54
Done.
|
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'depfile_target', |
| + 'type': 'none', |
| + 'actions': [ |
| + { |
| + 'action_name': 'depfile_action', |
| + 'inputs': [ |
| + 'input.txt', |
| + ], |
| + 'outputs': [ |
| + 'output.txt', |
| + ], |
| + 'depfile': 'depfile.d', |
| + 'action': [ ] |
| + }, |
| + ], |
| + }, |
| + ], |
| +} |
| + |
|
bradn
2015/01/15 01:07:07
Drop trailing newline
teravest
2015/01/15 15:36:54
Done.
|