| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index 951b98143d0eb948c2f330f8604fdfb0c130c21c..0c36faa51713fad797b1a24ff3be2c2375d8690d 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -449,10 +449,14 @@ def _CheckGNCheck(input_api, output_api):
|
| '//mojo/public/*',
|
| '//mojo/tools/*',
|
| ]
|
| - if input_api.platform != 'win32':
|
| - KNOWN_PASSING += [
|
| - '//sky/*',
|
| - ]
|
| + # TODO(eseidel): //sky is temporarily broken during the process of
|
| + # making all of our headers aboslute. crbug.com/435361
|
| + # Now that they're absolute gn understands our includes and our previous
|
| + # passing of gn check was a total lie.
|
| + # if input_api.platform != 'win32':
|
| + # KNOWN_PASSING += [
|
| + # '//sky/*',
|
| + # ]
|
| for target_filter in KNOWN_PASSING:
|
| try:
|
| input_api.subprocess.check_output(['gn', 'check', relative_out_dir,
|
|
|