Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1146)

Unified Diff: mojo/tools/mojob.py

Issue 853133002: Remove glib from the mojo build. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Also use_glib=false on Chromeos Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/base/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/tools/mojob.py
diff --git a/mojo/tools/mojob.py b/mojo/tools/mojob.py
index 7dfbd89f28845b3090a4e61323a987d0d12f874d..11862f3087f37acc8e4bdbcc1461311f0ad2b1c1 100755
--- a/mojo/tools/mojob.py
+++ b/mojo/tools/mojob.py
@@ -108,6 +108,10 @@ def gn(config):
gn_args.append(r'''os=\"android\"''')
elif config.target_os == Config.OS_CHROMEOS:
gn_args.append(r'''os=\"chromeos\" use_system_harfbuzz=false''')
+ gn_args.append(r'''use_glib=false''')
+ elif config.target_os == Config.OS_LINUX:
+ gn_args.append(r'''use_system_harfbuzz=false is_desktop_linux=false''')
+ gn_args.append(r'''use_glib=false use_aura=false''')
gn_args.append(r'''cpu_arch=\"%s\"''' % config.target_arch)
« no previous file with comments | « no previous file | ui/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698