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

Unified Diff: inspector_protocol.gni

Issue 2482093004: [inspector_protocol] Allow overriding specific config values. (Closed)
Patch Set: typo Created 4 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
« no previous file with comments | « CodeGenerator.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: inspector_protocol.gni
diff --git a/inspector_protocol.gni b/inspector_protocol.gni
index 34bc0de2088bb70239c801f65cbe0c8c7e88757f..5dcc1f522d863492b28d6d5c35d2232a08d26fe8 100644
--- a/inspector_protocol.gni
+++ b/inspector_protocol.gni
@@ -67,6 +67,15 @@ template("inspector_protocol_generate") {
rebase_path(invoker.config_file, root_build_dir),
]
+ if (defined(invoker.config_values)) {
+ foreach(value, invoker.config_values) {
+ args += [
+ "--config_value",
+ value,
+ ]
+ }
+ }
+
outputs = get_path_info(rebase_path(invoker.outputs, ".", invoker.out_dir),
"abspath")
« no previous file with comments | « CodeGenerator.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698