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

Unified Diff: test/ninja/chained-dependency/gyptest-chained-dependency.py

Issue 421453003: Add TestGypXcodeNinja to run tests against the xcode-ninja generator (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Rebase onto origin/master Created 6 years 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-dependency/gyptest-chained-dependency.py
diff --git a/test/ninja/chained-dependency/gyptest-chained-dependency.py b/test/ninja/chained-dependency/gyptest-chained-dependency.py
index 9fcd9a45d05c789038d241bf74b33093b2af6326..d8763f1d3db5b4b7a3aed37ba339ad1a4f1fb385 100755
--- a/test/ninja/chained-dependency/gyptest-chained-dependency.py
+++ b/test/ninja/chained-dependency/gyptest-chained-dependency.py
@@ -18,6 +18,10 @@ import TestGyp
# - it relies on a ninja-specific output file path.
test = TestGyp.TestGyp(formats=['ninja'])
+# xcode-ninja doesn't support building single object files by design.
+if test.format == 'xcode-ninja':
+ test.skip_test()
+
test.run_gyp('chained-dependency.gyp')
objext = '.obj' if sys.platform == 'win32' else '.o'
test.build('chained-dependency.gyp',

Powered by Google App Engine
This is Rietveld 408576698