| Index: test/actions/gyptest-default.py
|
| diff --git a/test/actions/gyptest-default.py b/test/actions/gyptest-default.py
|
| index f5b4e35105857dbf8d128d762bf6c12b647c382a..9b5a917eefdb979535945f4fbb44dbf924b19f1c 100755
|
| --- a/test/actions/gyptest-default.py
|
| +++ b/test/actions/gyptest-default.py
|
| @@ -12,7 +12,9 @@ import TestGyp
|
|
|
| test = TestGyp.TestGyp(workdir='workarea_default')
|
|
|
| -test.run_gyp('actions.gyp', chdir='src')
|
| +test.run_gyp('actions.gyp',
|
| + '-G', 'xcode_ninja_target_pattern=^.*$',
|
| + chdir='src')
|
|
|
| test.relocate('src', 'relocate/src')
|
|
|
| @@ -21,7 +23,7 @@ test.relocate('src', 'relocate/src')
|
| # doesn't mesh well with ninja's semantics. TODO(evan): figure out
|
| # how to work always-run actions in to ninja.
|
| # Android also can't do this as it doesn't have order-only dependencies.
|
| -if test.format in ['ninja', 'android']:
|
| +if test.format in ['ninja', 'android', 'xcode-ninja']:
|
| test.build('actions.gyp', test.ALL, chdir='relocate/src')
|
| else:
|
| # Test that an "always run" action increases a counter on multiple
|
|
|