• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1licenses(["restricted"])
2
3package(default_visibility = ["//visibility:public"])
4
5# Point both runtimes to the same python binary to ensure we always
6# use the python binary specified by ./configure.py script.
7load("@bazel_tools//tools/python:toolchain.bzl", "py_runtime_pair")
8
9py_runtime(
10    name = "py2_runtime",
11    interpreter_path = "c:/Python38/python.exe",
12    python_version = "PY2",
13)
14
15py_runtime(
16    name = "py3_runtime",
17    interpreter_path = "c:/Python38/python.exe",
18    python_version = "PY3",
19)
20
21py_runtime_pair(
22    name = "py_runtime_pair",
23    py2_runtime = ":py2_runtime",
24    py3_runtime = ":py3_runtime",
25)
26
27toolchain(
28    name = "py_toolchain",
29    toolchain = ":py_runtime_pair",
30    toolchain_type = "@bazel_tools//tools/python:toolchain_type",
31)
32
33# To build Python C/C++ extension on Windows, we need to link to python import library pythonXY.lib
34# See https://docs.python.org/3/extending/windows.html
35cc_import(
36    name = "python_lib",
37    interface_library = select({
38        ":windows": ":python_import_lib",
39        # A placeholder for Unix platforms which makes --no_build happy.
40        "//conditions:default": "not-existing.lib",
41    }),
42    system_provided = 1,
43)
44
45cc_library(
46    name = "python_headers",
47    hdrs = [":python_include"],
48    includes = ["python_include"],
49    deps = select({
50        ":windows": [":python_lib"],
51        "//conditions:default": [],
52    }),
53)
54
55cc_library(
56    name = "numpy_headers",
57    hdrs = [":numpy_include"],
58    includes = ["numpy_include"],
59)
60
61config_setting(
62    name = "windows",
63    values = {"cpu": "x64_windows"},
64    visibility = ["//visibility:public"],
65)
66
67genrule(
68    name = "python_include",
69    outs = [
70        "python_include/Python-ast.h",
71        "python_include/Python.h",
72        "python_include/abstract.h",
73        "python_include/asdl.h",
74        "python_include/ast.h",
75        "python_include/bitset.h",
76        "python_include/bltinmodule.h",
77        "python_include/boolobject.h",
78        "python_include/bytearrayobject.h",
79        "python_include/bytes_methods.h",
80        "python_include/bytesobject.h",
81        "python_include/cellobject.h",
82        "python_include/ceval.h",
83        "python_include/classobject.h",
84        "python_include/code.h",
85        "python_include/codecs.h",
86        "python_include/compile.h",
87        "python_include/complexobject.h",
88        "python_include/context.h",
89        "python_include/cpython/abstract.h",
90        "python_include/cpython/dictobject.h",
91        "python_include/cpython/fileobject.h",
92        "python_include/cpython/initconfig.h",
93        "python_include/cpython/interpreteridobject.h",
94        "python_include/cpython/object.h",
95        "python_include/cpython/objimpl.h",
96        "python_include/cpython/pyerrors.h",
97        "python_include/cpython/pylifecycle.h",
98        "python_include/cpython/pymem.h",
99        "python_include/cpython/pystate.h",
100        "python_include/cpython/sysmodule.h",
101        "python_include/cpython/traceback.h",
102        "python_include/cpython/tupleobject.h",
103        "python_include/cpython/unicodeobject.h",
104        "python_include/datetime.h",
105        "python_include/descrobject.h",
106        "python_include/dictobject.h",
107        "python_include/dtoa.h",
108        "python_include/dynamic_annotations.h",
109        "python_include/enumobject.h",
110        "python_include/errcode.h",
111        "python_include/eval.h",
112        "python_include/fileobject.h",
113        "python_include/fileutils.h",
114        "python_include/floatobject.h",
115        "python_include/frameobject.h",
116        "python_include/funcobject.h",
117        "python_include/genobject.h",
118        "python_include/graminit.h",
119        "python_include/grammar.h",
120        "python_include/import.h",
121        "python_include/internal/pycore_accu.h",
122        "python_include/internal/pycore_atomic.h",
123        "python_include/internal/pycore_ceval.h",
124        "python_include/internal/pycore_code.h",
125        "python_include/internal/pycore_condvar.h",
126        "python_include/internal/pycore_context.h",
127        "python_include/internal/pycore_fileutils.h",
128        "python_include/internal/pycore_getopt.h",
129        "python_include/internal/pycore_gil.h",
130        "python_include/internal/pycore_hamt.h",
131        "python_include/internal/pycore_initconfig.h",
132        "python_include/internal/pycore_object.h",
133        "python_include/internal/pycore_pathconfig.h",
134        "python_include/internal/pycore_pyerrors.h",
135        "python_include/internal/pycore_pyhash.h",
136        "python_include/internal/pycore_pylifecycle.h",
137        "python_include/internal/pycore_pymem.h",
138        "python_include/internal/pycore_pystate.h",
139        "python_include/internal/pycore_traceback.h",
140        "python_include/internal/pycore_tupleobject.h",
141        "python_include/internal/pycore_warnings.h",
142        "python_include/interpreteridobject.h",
143        "python_include/intrcheck.h",
144        "python_include/iterobject.h",
145        "python_include/listobject.h",
146        "python_include/longintrepr.h",
147        "python_include/longobject.h",
148        "python_include/marshal.h",
149        "python_include/memoryobject.h",
150        "python_include/methodobject.h",
151        "python_include/modsupport.h",
152        "python_include/moduleobject.h",
153        "python_include/namespaceobject.h",
154        "python_include/node.h",
155        "python_include/object.h",
156        "python_include/objimpl.h",
157        "python_include/odictobject.h",
158        "python_include/opcode.h",
159        "python_include/osdefs.h",
160        "python_include/osmodule.h",
161        "python_include/parsetok.h",
162        "python_include/patchlevel.h",
163        "python_include/picklebufobject.h",
164        "python_include/py_curses.h",
165        "python_include/pyarena.h",
166        "python_include/pycapsule.h",
167        "python_include/pyconfig.h",
168        "python_include/pyctype.h",
169        "python_include/pydebug.h",
170        "python_include/pydtrace.h",
171        "python_include/pyerrors.h",
172        "python_include/pyexpat.h",
173        "python_include/pyfpe.h",
174        "python_include/pyhash.h",
175        "python_include/pylifecycle.h",
176        "python_include/pymacconfig.h",
177        "python_include/pymacro.h",
178        "python_include/pymath.h",
179        "python_include/pymem.h",
180        "python_include/pyport.h",
181        "python_include/pystate.h",
182        "python_include/pystrcmp.h",
183        "python_include/pystrhex.h",
184        "python_include/pystrtod.h",
185        "python_include/pythonrun.h",
186        "python_include/pythread.h",
187        "python_include/pytime.h",
188        "python_include/rangeobject.h",
189        "python_include/setobject.h",
190        "python_include/sliceobject.h",
191        "python_include/structmember.h",
192        "python_include/structseq.h",
193        "python_include/symtable.h",
194        "python_include/sysmodule.h",
195        "python_include/token.h",
196        "python_include/traceback.h",
197        "python_include/tracemalloc.h",
198        "python_include/tupleobject.h",
199        "python_include/typeslots.h",
200        "python_include/ucnhash.h",
201        "python_include/unicodeobject.h",
202        "python_include/warnings.h",
203        "python_include/weakrefobject.h",
204    ],
205    cmd = """
206cp -f "c:/Python38/include/Python-ast.h" "$(@D)/python_include/Python-ast.h" && cp -f "c:/Python38/include/Python.h" "$(@D)/python_include/Python.h" && cp -f "c:/Python38/include/abstract.h" "$(@D)/python_include/abstract.h" && cp -f "c:/Python38/include/asdl.h" "$(@D)/python_include/asdl.h" && cp -f "c:/Python38/include/ast.h" "$(@D)/python_include/ast.h" && cp -f "c:/Python38/include/bitset.h" "$(@D)/python_include/bitset.h" && cp -f "c:/Python38/include/bltinmodule.h" "$(@D)/python_include/bltinmodule.h" && cp -f "c:/Python38/include/boolobject.h" "$(@D)/python_include/boolobject.h" && cp -f "c:/Python38/include/bytearrayobject.h" "$(@D)/python_include/bytearrayobject.h" && cp -f "c:/Python38/include/bytes_methods.h" "$(@D)/python_include/bytes_methods.h" && cp -f "c:/Python38/include/bytesobject.h" "$(@D)/python_include/bytesobject.h" && cp -f "c:/Python38/include/cellobject.h" "$(@D)/python_include/cellobject.h" && cp -f "c:/Python38/include/ceval.h" "$(@D)/python_include/ceval.h" && cp -f "c:/Python38/include/classobject.h" "$(@D)/python_include/classobject.h" && cp -f "c:/Python38/include/code.h" "$(@D)/python_include/code.h" && cp -f "c:/Python38/include/codecs.h" "$(@D)/python_include/codecs.h" && cp -f "c:/Python38/include/compile.h" "$(@D)/python_include/compile.h" && cp -f "c:/Python38/include/complexobject.h" "$(@D)/python_include/complexobject.h" && cp -f "c:/Python38/include/context.h" "$(@D)/python_include/context.h" && cp -f "c:/Python38/include/cpython/abstract.h" "$(@D)/python_include/cpython/abstract.h" && cp -f "c:/Python38/include/cpython/dictobject.h" "$(@D)/python_include/cpython/dictobject.h" && cp -f "c:/Python38/include/cpython/fileobject.h" "$(@D)/python_include/cpython/fileobject.h" && cp -f "c:/Python38/include/cpython/initconfig.h" "$(@D)/python_include/cpython/initconfig.h" && cp -f "c:/Python38/include/cpython/interpreteridobject.h" "$(@D)/python_include/cpython/interpreteridobject.h" && cp -f "c:/Python38/include/cpython/object.h" "$(@D)/python_include/cpython/object.h" && cp -f "c:/Python38/include/cpython/objimpl.h" "$(@D)/python_include/cpython/objimpl.h" && cp -f "c:/Python38/include/cpython/pyerrors.h" "$(@D)/python_include/cpython/pyerrors.h" && cp -f "c:/Python38/include/cpython/pylifecycle.h" "$(@D)/python_include/cpython/pylifecycle.h" && cp -f "c:/Python38/include/cpython/pymem.h" "$(@D)/python_include/cpython/pymem.h" && cp -f "c:/Python38/include/cpython/pystate.h" "$(@D)/python_include/cpython/pystate.h" && cp -f "c:/Python38/include/cpython/sysmodule.h" "$(@D)/python_include/cpython/sysmodule.h" && cp -f "c:/Python38/include/cpython/traceback.h" "$(@D)/python_include/cpython/traceback.h" && cp -f "c:/Python38/include/cpython/tupleobject.h" "$(@D)/python_include/cpython/tupleobject.h" && cp -f "c:/Python38/include/cpython/unicodeobject.h" "$(@D)/python_include/cpython/unicodeobject.h" && cp -f "c:/Python38/include/datetime.h" "$(@D)/python_include/datetime.h" && cp -f "c:/Python38/include/descrobject.h" "$(@D)/python_include/descrobject.h" && cp -f "c:/Python38/include/dictobject.h" "$(@D)/python_include/dictobject.h" && cp -f "c:/Python38/include/dtoa.h" "$(@D)/python_include/dtoa.h" && cp -f "c:/Python38/include/dynamic_annotations.h" "$(@D)/python_include/dynamic_annotations.h" && cp -f "c:/Python38/include/enumobject.h" "$(@D)/python_include/enumobject.h" && cp -f "c:/Python38/include/errcode.h" "$(@D)/python_include/errcode.h" && cp -f "c:/Python38/include/eval.h" "$(@D)/python_include/eval.h" && cp -f "c:/Python38/include/fileobject.h" "$(@D)/python_include/fileobject.h" && cp -f "c:/Python38/include/fileutils.h" "$(@D)/python_include/fileutils.h" && cp -f "c:/Python38/include/floatobject.h" "$(@D)/python_include/floatobject.h" && cp -f "c:/Python38/include/frameobject.h" "$(@D)/python_include/frameobject.h" && cp -f "c:/Python38/include/funcobject.h" "$(@D)/python_include/funcobject.h" && cp -f "c:/Python38/include/genobject.h" "$(@D)/python_include/genobject.h" && cp -f "c:/Python38/include/graminit.h" "$(@D)/python_include/graminit.h" && cp -f "c:/Python38/include/grammar.h" "$(@D)/python_include/grammar.h" && cp -f "c:/Python38/include/import.h" "$(@D)/python_include/import.h" && cp -f "c:/Python38/include/internal/pycore_accu.h" "$(@D)/python_include/internal/pycore_accu.h" && cp -f "c:/Python38/include/internal/pycore_atomic.h" "$(@D)/python_include/internal/pycore_atomic.h" && cp -f "c:/Python38/include/internal/pycore_ceval.h" "$(@D)/python_include/internal/pycore_ceval.h" && cp -f "c:/Python38/include/internal/pycore_code.h" "$(@D)/python_include/internal/pycore_code.h" && cp -f "c:/Python38/include/internal/pycore_condvar.h" "$(@D)/python_include/internal/pycore_condvar.h" && cp -f "c:/Python38/include/internal/pycore_context.h" "$(@D)/python_include/internal/pycore_context.h" && cp -f "c:/Python38/include/internal/pycore_fileutils.h" "$(@D)/python_include/internal/pycore_fileutils.h" && cp -f "c:/Python38/include/internal/pycore_getopt.h" "$(@D)/python_include/internal/pycore_getopt.h" && cp -f "c:/Python38/include/internal/pycore_gil.h" "$(@D)/python_include/internal/pycore_gil.h" && cp -f "c:/Python38/include/internal/pycore_hamt.h" "$(@D)/python_include/internal/pycore_hamt.h" && cp -f "c:/Python38/include/internal/pycore_initconfig.h" "$(@D)/python_include/internal/pycore_initconfig.h" && cp -f "c:/Python38/include/internal/pycore_object.h" "$(@D)/python_include/internal/pycore_object.h" && cp -f "c:/Python38/include/internal/pycore_pathconfig.h" "$(@D)/python_include/internal/pycore_pathconfig.h" && cp -f "c:/Python38/include/internal/pycore_pyerrors.h" "$(@D)/python_include/internal/pycore_pyerrors.h" && cp -f "c:/Python38/include/internal/pycore_pyhash.h" "$(@D)/python_include/internal/pycore_pyhash.h" && cp -f "c:/Python38/include/internal/pycore_pylifecycle.h" "$(@D)/python_include/internal/pycore_pylifecycle.h" && cp -f "c:/Python38/include/internal/pycore_pymem.h" "$(@D)/python_include/internal/pycore_pymem.h" && cp -f "c:/Python38/include/internal/pycore_pystate.h" "$(@D)/python_include/internal/pycore_pystate.h" && cp -f "c:/Python38/include/internal/pycore_traceback.h" "$(@D)/python_include/internal/pycore_traceback.h" && cp -f "c:/Python38/include/internal/pycore_tupleobject.h" "$(@D)/python_include/internal/pycore_tupleobject.h" && cp -f "c:/Python38/include/internal/pycore_warnings.h" "$(@D)/python_include/internal/pycore_warnings.h" && cp -f "c:/Python38/include/interpreteridobject.h" "$(@D)/python_include/interpreteridobject.h" && cp -f "c:/Python38/include/intrcheck.h" "$(@D)/python_include/intrcheck.h" && cp -f "c:/Python38/include/iterobject.h" "$(@D)/python_include/iterobject.h" && cp -f "c:/Python38/include/listobject.h" "$(@D)/python_include/listobject.h" && cp -f "c:/Python38/include/longintrepr.h" "$(@D)/python_include/longintrepr.h" && cp -f "c:/Python38/include/longobject.h" "$(@D)/python_include/longobject.h" && cp -f "c:/Python38/include/marshal.h" "$(@D)/python_include/marshal.h" && cp -f "c:/Python38/include/memoryobject.h" "$(@D)/python_include/memoryobject.h" && cp -f "c:/Python38/include/methodobject.h" "$(@D)/python_include/methodobject.h" && cp -f "c:/Python38/include/modsupport.h" "$(@D)/python_include/modsupport.h" && cp -f "c:/Python38/include/moduleobject.h" "$(@D)/python_include/moduleobject.h" && cp -f "c:/Python38/include/namespaceobject.h" "$(@D)/python_include/namespaceobject.h" && cp -f "c:/Python38/include/node.h" "$(@D)/python_include/node.h" && cp -f "c:/Python38/include/object.h" "$(@D)/python_include/object.h" && cp -f "c:/Python38/include/objimpl.h" "$(@D)/python_include/objimpl.h" && cp -f "c:/Python38/include/odictobject.h" "$(@D)/python_include/odictobject.h" && cp -f "c:/Python38/include/opcode.h" "$(@D)/python_include/opcode.h" && cp -f "c:/Python38/include/osdefs.h" "$(@D)/python_include/osdefs.h" && cp -f "c:/Python38/include/osmodule.h" "$(@D)/python_include/osmodule.h" && cp -f "c:/Python38/include/parsetok.h" "$(@D)/python_include/parsetok.h" && cp -f "c:/Python38/include/patchlevel.h" "$(@D)/python_include/patchlevel.h" && cp -f "c:/Python38/include/picklebufobject.h" "$(@D)/python_include/picklebufobject.h" && cp -f "c:/Python38/include/py_curses.h" "$(@D)/python_include/py_curses.h" && cp -f "c:/Python38/include/pyarena.h" "$(@D)/python_include/pyarena.h" && cp -f "c:/Python38/include/pycapsule.h" "$(@D)/python_include/pycapsule.h" && cp -f "c:/Python38/include/pyconfig.h" "$(@D)/python_include/pyconfig.h" && cp -f "c:/Python38/include/pyctype.h" "$(@D)/python_include/pyctype.h" && cp -f "c:/Python38/include/pydebug.h" "$(@D)/python_include/pydebug.h" && cp -f "c:/Python38/include/pydtrace.h" "$(@D)/python_include/pydtrace.h" && cp -f "c:/Python38/include/pyerrors.h" "$(@D)/python_include/pyerrors.h" && cp -f "c:/Python38/include/pyexpat.h" "$(@D)/python_include/pyexpat.h" && cp -f "c:/Python38/include/pyfpe.h" "$(@D)/python_include/pyfpe.h" && cp -f "c:/Python38/include/pyhash.h" "$(@D)/python_include/pyhash.h" && cp -f "c:/Python38/include/pylifecycle.h" "$(@D)/python_include/pylifecycle.h" && cp -f "c:/Python38/include/pymacconfig.h" "$(@D)/python_include/pymacconfig.h" && cp -f "c:/Python38/include/pymacro.h" "$(@D)/python_include/pymacro.h" && cp -f "c:/Python38/include/pymath.h" "$(@D)/python_include/pymath.h" && cp -f "c:/Python38/include/pymem.h" "$(@D)/python_include/pymem.h" && cp -f "c:/Python38/include/pyport.h" "$(@D)/python_include/pyport.h" && cp -f "c:/Python38/include/pystate.h" "$(@D)/python_include/pystate.h" && cp -f "c:/Python38/include/pystrcmp.h" "$(@D)/python_include/pystrcmp.h" && cp -f "c:/Python38/include/pystrhex.h" "$(@D)/python_include/pystrhex.h" && cp -f "c:/Python38/include/pystrtod.h" "$(@D)/python_include/pystrtod.h" && cp -f "c:/Python38/include/pythonrun.h" "$(@D)/python_include/pythonrun.h" && cp -f "c:/Python38/include/pythread.h" "$(@D)/python_include/pythread.h" && cp -f "c:/Python38/include/pytime.h" "$(@D)/python_include/pytime.h" && cp -f "c:/Python38/include/rangeobject.h" "$(@D)/python_include/rangeobject.h" && cp -f "c:/Python38/include/setobject.h" "$(@D)/python_include/setobject.h" && cp -f "c:/Python38/include/sliceobject.h" "$(@D)/python_include/sliceobject.h" && cp -f "c:/Python38/include/structmember.h" "$(@D)/python_include/structmember.h" && cp -f "c:/Python38/include/structseq.h" "$(@D)/python_include/structseq.h" && cp -f "c:/Python38/include/symtable.h" "$(@D)/python_include/symtable.h" && cp -f "c:/Python38/include/sysmodule.h" "$(@D)/python_include/sysmodule.h" && cp -f "c:/Python38/include/token.h" "$(@D)/python_include/token.h" && cp -f "c:/Python38/include/traceback.h" "$(@D)/python_include/traceback.h" && cp -f "c:/Python38/include/tracemalloc.h" "$(@D)/python_include/tracemalloc.h" && cp -f "c:/Python38/include/tupleobject.h" "$(@D)/python_include/tupleobject.h" && cp -f "c:/Python38/include/typeslots.h" "$(@D)/python_include/typeslots.h" && cp -f "c:/Python38/include/ucnhash.h" "$(@D)/python_include/ucnhash.h" && cp -f "c:/Python38/include/unicodeobject.h" "$(@D)/python_include/unicodeobject.h" && cp -f "c:/Python38/include/warnings.h" "$(@D)/python_include/warnings.h" && cp -f "c:/Python38/include/weakrefobject.h" "$(@D)/python_include/weakrefobject.h"
207   """,
208)
209
210genrule(
211    name = "numpy_include",
212    outs = [
213        "numpy_include/numpy/__multiarray_api.h",
214        "numpy_include/numpy/__ufunc_api.h",
215        "numpy_include/numpy/_neighborhood_iterator_imp.h",
216        "numpy_include/numpy/_numpyconfig.h",
217        "numpy_include/numpy/arrayobject.h",
218        "numpy_include/numpy/arrayscalars.h",
219        "numpy_include/numpy/halffloat.h",
220        "numpy_include/numpy/multiarray_api.txt",
221        "numpy_include/numpy/ndarrayobject.h",
222        "numpy_include/numpy/ndarraytypes.h",
223        "numpy_include/numpy/noprefix.h",
224        "numpy_include/numpy/npy_1_7_deprecated_api.h",
225        "numpy_include/numpy/npy_3kcompat.h",
226        "numpy_include/numpy/npy_common.h",
227        "numpy_include/numpy/npy_cpu.h",
228        "numpy_include/numpy/npy_endian.h",
229        "numpy_include/numpy/npy_interrupt.h",
230        "numpy_include/numpy/npy_math.h",
231        "numpy_include/numpy/npy_no_deprecated_api.h",
232        "numpy_include/numpy/npy_os.h",
233        "numpy_include/numpy/numpyconfig.h",
234        "numpy_include/numpy/old_defines.h",
235        "numpy_include/numpy/oldnumeric.h",
236        "numpy_include/numpy/random/bitgen.h",
237        "numpy_include/numpy/random/distributions.h",
238        "numpy_include/numpy/ufunc_api.txt",
239        "numpy_include/numpy/ufuncobject.h",
240        "numpy_include/numpy/utils.h",
241    ],
242    cmd = """
243cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/__multiarray_api.h" "$(@D)/numpy_include/numpy/__multiarray_api.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/__ufunc_api.h" "$(@D)/numpy_include/numpy/__ufunc_api.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/_neighborhood_iterator_imp.h" "$(@D)/numpy_include/numpy/_neighborhood_iterator_imp.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/_numpyconfig.h" "$(@D)/numpy_include/numpy/_numpyconfig.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/arrayobject.h" "$(@D)/numpy_include/numpy/arrayobject.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/arrayscalars.h" "$(@D)/numpy_include/numpy/arrayscalars.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/halffloat.h" "$(@D)/numpy_include/numpy/halffloat.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/multiarray_api.txt" "$(@D)/numpy_include/numpy/multiarray_api.txt" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/ndarrayobject.h" "$(@D)/numpy_include/numpy/ndarrayobject.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/ndarraytypes.h" "$(@D)/numpy_include/numpy/ndarraytypes.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/noprefix.h" "$(@D)/numpy_include/numpy/noprefix.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h" "$(@D)/numpy_include/numpy/npy_1_7_deprecated_api.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_3kcompat.h" "$(@D)/numpy_include/numpy/npy_3kcompat.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_common.h" "$(@D)/numpy_include/numpy/npy_common.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_cpu.h" "$(@D)/numpy_include/numpy/npy_cpu.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_endian.h" "$(@D)/numpy_include/numpy/npy_endian.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_interrupt.h" "$(@D)/numpy_include/numpy/npy_interrupt.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_math.h" "$(@D)/numpy_include/numpy/npy_math.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_no_deprecated_api.h" "$(@D)/numpy_include/numpy/npy_no_deprecated_api.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/npy_os.h" "$(@D)/numpy_include/numpy/npy_os.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/numpyconfig.h" "$(@D)/numpy_include/numpy/numpyconfig.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/old_defines.h" "$(@D)/numpy_include/numpy/old_defines.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/oldnumeric.h" "$(@D)/numpy_include/numpy/oldnumeric.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/random/bitgen.h" "$(@D)/numpy_include/numpy/random/bitgen.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/random/distributions.h" "$(@D)/numpy_include/numpy/random/distributions.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/ufunc_api.txt" "$(@D)/numpy_include/numpy/ufunc_api.txt" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/ufuncobject.h" "$(@D)/numpy_include/numpy/ufuncobject.h" && cp -f "c:/Python38/lib/site-packages/numpy/core/include/numpy/utils.h" "$(@D)/numpy_include/numpy/utils.h"
244   """,
245)
246
247genrule(
248    name = "python_import_lib",
249    outs = [
250        "python38.lib",
251    ],
252    cmd = """
253cp -f "c:/Python38/libs/python38.lib" "$(@D)/python38.lib"
254   """,
255)
256