From 5b799381f448ab7d3734e20f0a00a53c0357cb52 Mon Sep 17 00:00:00 2001 From: Chinmay Garde Date: Wed, 26 Sep 2018 18:15:30 -0700 Subject: [PATCH] Dont make any binaries specify an X11 dependency. (#6353) --- tools/gn | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gn b/tools/gn index 874b9e049..4e436b919 100755 --- a/tools/gn +++ b/tools/gn @@ -82,6 +82,7 @@ def to_gn_args(args): gn_args['skia_use_dng_sdk'] = False # RAW image handling. gn_args['skia_use_sfntly'] = False # PDF handling depedency. gn_args['skia_enable_pdf'] = False # PDF handling. + gn_args['skia_use_x11'] = False # Never add the X11 dependency (only takes effect on Linux). gn_args['skia_use_expat'] = args.target_os == 'android' gn_args['skia_use_fontconfig'] = False # Use the custom font manager instead. gn_args['is_official_build'] = True # Disable Skia test utilities. -- GitLab