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

Unified Diff: test/actions-args-change/src/write_file.py

Issue 10375015: MSVS 2008: Fix to ensure that actions are re-run when the command changes (v2) (Closed) Base URL: http://git.chromium.org/external/gyp.git@master
Patch Set: Style Created 8 years, 8 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-args-change/src/dummy-fixed-input.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/actions-args-change/src/write_file.py
diff --git a/test/actions-args-change/src/write_file.py b/test/actions-args-change/src/write_file.py
new file mode 100644
index 0000000000000000000000000000000000000000..041e67cf7eeb1c033a92bb4fac1e191305259805
--- /dev/null
+++ b/test/actions-args-change/src/write_file.py
@@ -0,0 +1,11 @@
+#!/usr/bin/env python
+
+# Copyright (c) 2012 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.
+
+import sys
+
+f = open(sys.argv[1], 'w')
+f.write(sys.argv[2])
+f.close()
« no previous file with comments | « test/actions-args-change/src/dummy-fixed-input.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698