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

Unified Diff: test/actions-depfile/gyptest-all.py

Issue 793153004: Add 'depfile' option to actions. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Fix copyright year and trailing newline 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 | « test/actions-depfile/depfile.gyp ('k') | test/actions-depfile/input.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/actions-depfile/gyptest-all.py
diff --git a/test/actions-depfile/gyptest-all.py b/test/actions-depfile/gyptest-all.py
new file mode 100644
index 0000000000000000000000000000000000000000..23f6f4a056707b79995973e9c27ddaf01a26fd3b
--- /dev/null
+++ b/test/actions-depfile/gyptest-all.py
@@ -0,0 +1,20 @@
+#!/usr/bin/env python
+
+# Copyright (c) 2014 Google Inc. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Verifies that depfile fields are output in ninja rules."""
+
+import TestGyp
+
+test = TestGyp.TestGyp()
+
+if test.format == 'ninja':
+ test.run_gyp('depfile.gyp')
+ contents = open(test.built_file_path('obj/depfile_target.ninja')).read()
+
+ expected = 'depfile = depfile.d'
+ if expected not in contents:
+ test.fail_test()
+ test.pass_test()
« no previous file with comments | « test/actions-depfile/depfile.gyp ('k') | test/actions-depfile/input.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698