Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
f0d69e38
Commit
f0d69e38
authored
Sep 20, 2017
by
Robert Bradshaw
Committed by
GitHub
Sep 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1876 from treuherz/patch-1
Pass pyx_library kwargs to py_library
parents
3134ec55
dff1e43d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
Tools/rules.bzl
Tools/rules.bzl
+4
-2
No files found.
Tools/rules.bzl
View file @
f0d69e38
...
...
@@ -24,7 +24,8 @@ def pyx_library(
deps
=
[],
srcs
=
[],
cython_directives
=
[],
cython_options
=
[]):
cython_options
=
[],
**
kwargs
):
# First filter out files that should be run compiled vs. passed through.
py_srcs
=
[]
pyx_srcs
=
[]
...
...
@@ -64,5 +65,6 @@ def pyx_library(
name
=
name
,
srcs
=
py_srcs
,
deps
=
deps
,
data
=
outs
+
pyx_srcs
+
pxd_srcs
data
=
outs
+
pyx_srcs
+
pxd_srcs
,
**
kwargs
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment