summaryrefslogtreecommitdiffstats
path: root/third_party/cython
diff options
context:
space:
mode:
authorqsr <qsr@chromium.org>2014-09-17 06:28:03 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-17 13:28:17 +0000
commit830c88cca3c89dfabcbfc360ac7c035a020b8307 (patch)
tree76aa63524cad1a17adb6a1ce99a45f8553d2c382 /third_party/cython
parentb2114e78460ff396f2e8818f4a757c6c3d1860d0 (diff)
downloadchromium_src-830c88cca3c89dfabcbfc360ac7c035a020b8307.zip
chromium_src-830c88cca3c89dfabcbfc360ac7c035a020b8307.tar.gz
chromium_src-830c88cca3c89dfabcbfc360ac7c035a020b8307.tar.bz2
mojo: Add a runloop utility in python
This is necessary to be able to use async operation on handles. R=sdefresne@chromium.org,cmasone@chromium.org Review URL: https://codereview.chromium.org/552783004 Cr-Commit-Position: refs/heads/master@{#295267}
Diffstat (limited to 'third_party/cython')
-rw-r--r--third_party/cython/rules.gni3
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/cython/rules.gni b/third_party/cython/rules.gni
index fce3e4c..252e948 100644
--- a/third_party/cython/rules.gni
+++ b/third_party/cython/rules.gni
@@ -72,6 +72,9 @@ template("python_binary_module") {
datadeps = invoker.datadeps
}
sources = [ cython_output ]
+ if (defined(invoker.additional_sources)) {
+ sources += invoker.additional_sources
+ }
configs += [ ":$config_name" ]
}