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

Unified Diff: third_party/cython/rules.gni

Issue 1254963012: Fix generated file dependencies for upcoming gn (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 4 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 | « shell/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/cython/rules.gni
diff --git a/third_party/cython/rules.gni b/third_party/cython/rules.gni
index ea6e0aebf6f4db6ab5bd43bd88f04301de446668..f5a8fc48f6bd10192f186899f92e98d5f02f519c 100644
--- a/third_party/cython/rules.gni
+++ b/third_party/cython/rules.gni
@@ -34,6 +34,12 @@ template("python_binary_source_set") {
"-o",
rebase_path(cython_output, root_build_dir),
] + rebase_path(sources, root_build_dir)
+ if (defined(invoker.deps)) {
+ deps = invoker.deps
+ }
+ if (defined(invoker.public_deps)) {
+ public_deps = invoker.public_deps
+ }
}
}
@@ -74,6 +80,9 @@ template("python_binary_source_set") {
if (defined(invoker.datadeps)) {
datadeps = invoker.datadeps
}
+ if (defined(invoker.public_deps)) {
+ public_deps = invoker.public_deps
+ }
}
}
« no previous file with comments | « shell/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698