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

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

Issue 2003813002: Dart: Rolls runtime forward. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix test Created 4 years, 7 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 | « mojo/tools/mojob.py ('k') | mojo/tools/mopy/gn_unittest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/tools/mopy/gn.py
diff --git a/mojo/tools/mopy/gn.py b/mojo/tools/mopy/gn.py
index deb29bc984ad376ea10638f13bd1a9dbb0291bab..3b933c301d688e36689389dfd8cae45fc9c3cdd6 100644
--- a/mojo/tools/mopy/gn.py
+++ b/mojo/tools/mopy/gn.py
@@ -94,6 +94,8 @@ def GNArgsForConfig(config):
if gn_args["mojo_use_go"]:
gn_args["go_build_tool"] = config.values.get("go_build_tool")
+ gn_args["dart_boringssl_path"] = config.values.get("boringssl_path", "")
+
extra_args = config.values.get("gn_args")
if extra_args:
for arg in extra_args.split():
@@ -140,6 +142,7 @@ def ConfigForGNArgs(args):
config_args["target_sysroot"] = args.get("target_sysroot")
if "toolchain_prefix" in args:
config_args["toolchain_prefix"] = args.get("toolchain_prefix")
+ config_args["boringssl_path"] = args.get("dart_boringssl_path")
return Config(**config_args)
« no previous file with comments | « mojo/tools/mojob.py ('k') | mojo/tools/mopy/gn_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698