From 83ce8c40b1238ee48182bb7007dd2e47ae896e97 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Wed, 6 Sep 2017 15:55:29 -0700 Subject: [PATCH] Set the is_official_build flag that disables GR_TEST_UTILS in Skia (#4072) Fixes https://github.com/flutter/flutter/issues/11952 --- tools/gn | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gn b/tools/gn index 1f7a3ed9c..9a0495189 100755 --- a/tools/gn +++ b/tools/gn @@ -69,6 +69,7 @@ def to_gn_args(args): gn_args['skia_use_sfntly'] = False # PDF handling. gn_args['skia_use_libwebp'] = False # Needs third_party/libwebp. gn_args['skia_use_fontconfig'] = False # Use the custom font manager instead. + gn_args['is_official_build'] = True # Disable Skia test utilities. gn_args['is_debug'] = args.unoptimized gn_args['android_full_debug'] = args.target_os == 'android' and args.unoptimized -- GitLab