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

Unified Diff: test/msvs/external_builder/external_builder.py

Issue 13867004: Integrate ninja build with Visual Studio (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: with review comments Created 7 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/msvs/external_builder/external.gyp ('k') | test/msvs/external_builder/gyptest-all.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/msvs/external_builder/external_builder.py
diff --git a/test/self-dependency/self_dependency.gyp b/test/msvs/external_builder/external_builder.py
similarity index 55%
copy from test/self-dependency/self_dependency.gyp
copy to test/msvs/external_builder/external_builder.py
index 0ca76c669b6a686bf686c5b9a4be5e9ebc2b2c41..ddfc1e5e33c10b247ba11adfb2e3b39e0aaf07b0 100644
--- a/test/self-dependency/self_dependency.gyp
+++ b/test/msvs/external_builder/external_builder.py
@@ -2,14 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-{
- 'includes': [
- 'common.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'a',
- 'type': 'none',
- },
- ],
-}
+import sys
+
+with open('external_builder.out', 'w') as f:
+ f.write(' '.join(sys.argv))
+
« no previous file with comments | « test/msvs/external_builder/external.gyp ('k') | test/msvs/external_builder/gyptest-all.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698