| Index: test/dependencies/gyptest-lib-only.py
|
| diff --git a/test/dependencies/gyptest-lib-only.py b/test/dependencies/gyptest-lib-only.py
|
| index 283c29ee0f17fc6b707d02e58f5996a07d8ff1b4..bf30ddb1fa952aaa9ed05ba63dad3c2c1a5c4c4d 100755
|
| --- a/test/dependencies/gyptest-lib-only.py
|
| +++ b/test/dependencies/gyptest-lib-only.py
|
| @@ -15,7 +15,8 @@ import sys
|
|
|
| test = TestGyp.TestGyp()
|
|
|
| -test.run_gyp('lib_only.gyp')
|
| +test.run_gyp('lib_only.gyp',
|
| + '-G', 'xcode_ninja_target_pattern=^.*$')
|
|
|
| test.build('lib_only.gyp', test.ALL)
|
|
|
| @@ -29,7 +30,7 @@ if sys.platform == 'darwin':
|
| if test.format == 'xcode':
|
| test.built_file_must_not_exist('b', type=test.STATIC_LIB)
|
| else:
|
| - assert test.format in ('make', 'ninja')
|
| + assert test.format in ('make', 'ninja', 'xcode-ninja')
|
| test.built_file_must_exist('b', type=test.STATIC_LIB)
|
| else:
|
| # Make puts the resulting library in a directory matching the input gyp file;
|
|
|