| Index: build/check_gn_headers.py
|
| diff --git a/build/check_gn_headers.py b/build/check_gn_headers.py
|
| index 732f6038db40b472d1c6ef9eb2d01c9062dfb92c..0850196e31b1594e8923e263ae71468794bcba0b 100755
|
| --- a/build/check_gn_headers.py
|
| +++ b/build/check_gn_headers.py
|
| @@ -163,14 +163,13 @@
|
| if args.whitelist:
|
| whitelist = ParseWhiteList(open(args.whitelist).read())
|
| missing -= whitelist
|
| - nonexisting -= whitelist
|
|
|
| missing = sorted(missing)
|
| nonexisting = sorted(nonexisting)
|
|
|
| if args.json:
|
| with open(args.json, 'w') as f:
|
| - json.dump(sorted(missing + nonexisting), f)
|
| + json.dump(missing, f)
|
|
|
| if len(missing) == 0 and len(nonexisting) == 0:
|
| return 0
|
|
|