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

Unified Diff: test/ninja/chained-rules/copyfile.py

Issue 10381103: ninja: rules chained only by output of first one failing Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: remove debug print Created 8 years, 7 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
Index: test/ninja/chained-rules/copyfile.py
diff --git a/test/ninja/chained-rules/copyfile.py b/test/ninja/chained-rules/copyfile.py
new file mode 100644
index 0000000000000000000000000000000000000000..a15af43510696e21a99929f455f8c15439068832
--- /dev/null
+++ b/test/ninja/chained-rules/copyfile.py
@@ -0,0 +1,7 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import shutil
+import sys
+shutil.copyfile(sys.argv[1], sys.argv[2])

Powered by Google App Engine
This is Rietveld 408576698