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

Unified Diff: mojo/tools/mopy/gn.py

Issue 1442523002: Get rid of the use_glib gn variable. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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
Index: mojo/tools/mopy/gn.py
diff --git a/mojo/tools/mopy/gn.py b/mojo/tools/mopy/gn.py
index 8f11d0adf544e63198c00516adbec9ee8981ef3e..61c9dffc634b73f5b8f5066bd5eef4296b5d3c14 100644
--- a/mojo/tools/mopy/gn.py
+++ b/mojo/tools/mopy/gn.py
@@ -74,7 +74,6 @@ def GNArgsForConfig(config):
elif config.target_os == Config.OS_FNL:
gn_args["target_os"] = "fnl"
gn_args["use_aura"] = False
- gn_args["use_glib"] = False
gn_args["use_ozone"] = True
gn_args["target_sysroot"] = config.values.get("target_sysroot", "")
gn_args["toolchain_prefix"] = config.values.get("toolchain_prefix", "")
@@ -87,7 +86,6 @@ def GNArgsForConfig(config):
gn_args["use_ios_simulator"] = config.is_simulator
elif config.target_os == Config.OS_LINUX:
gn_args["use_aura"] = False
- gn_args["use_glib"] = False
gn_args["target_cpu"] = config.target_cpu

Powered by Google App Engine
This is Rietveld 408576698