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

Unified Diff: test/actions-depfile/depfile.gyp

Issue 793153004: Add 'depfile' option to actions. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Add gyp test Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pylib/gyp/generator/ninja.py ('k') | test/actions-depfile/gyptest-all.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « pylib/gyp/generator/ninja.py ('k') | test/actions-depfile/gyptest-all.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698