Searched refs:build_ext (Results 1 - 12 of 12) sorted by relevance
/third_party/python/Lib/distutils/tests/ |
H A D | test_build_ext.py | 7 from distutils.command.build_ext import build_ext namespace 37 from distutils.command import build_ext namespace 38 build_ext.USER_BASE = site.USER_BASE 49 from distutils.command import build_ext namespace 50 build_ext.USER_BASE = self.old_user_base 55 def build_ext(self, *args, **kwargs): member in BuildExtTestCase 56 return build_ext(*args, **kwargs) 69 cmd = self.build_ext(dist) 120 cmd = self.build_ext(dis 542 def build_ext(self, *args, **kwargs): global() member in ParallelBuildExtTestCase [all...] |
H A D | test_install.py | 13 from distutils.command.build_ext import build_ext namespace 222 buildextcmd = build_ext(dist) 228 dist.command_obj['build_ext'] = buildextcmd
|
/third_party/benchmark/ |
H A D | setup.py | 9 from setuptools.command import build_ext namespace 50 class BuildBazelExtension(build_ext.build_ext): 56 build_ext.build_ext.run(self) 106 cmdclass=dict(build_ext=BuildBazelExtension),
|
/third_party/skia/third_party/externals/brotli/ |
H A D | setup.py | 17 from distutils.command.build_ext import build_ext namespace 50 class BuildExt(build_ext): 53 filenames = build_ext.get_source_files(self) 277 'build_ext': BuildExt,
|
/third_party/PyYAML/ |
H A D | setup.py | 73 from setuptools.command.build_ext import build_ext as _build_ext 84 from Cython.Distutils import build_ext as _build_ext 174 class build_ext(_build_ext): class 195 log.warn("skipping build_ext") 279 'build_ext': build_ext,
|
/third_party/python/Lib/distutils/command/ |
H A D | install_lib.py | 107 self.run_command('build_ext') 196 'build_ext', 'build_lib', 214 build_ext = self.get_finalized_command('build_ext') 215 inputs.extend(build_ext.get_outputs())
|
H A D | sdist.py | 311 build_ext = self.get_finalized_command('build_ext') 312 self.filelist.extend(build_ext.get_source_files())
|
H A D | build_ext.py | 1 """distutils.command.build_ext 3 Implements the Distutils 'build_ext' command, for building extension 33 class build_ext(Command): class
|
/third_party/skia/third_party/externals/brotli/python/ |
H A D | Makefile | 36 @cd .. && $(PYTHON) setup.py build_ext --inplace
|
/third_party/python/Lib/test/ |
H A D | test_sundry.py | 32 import distutils.command.build_ext namespace
|
/third_party/python/ |
H A D | setup.py | 49 from distutils.command.build_ext import build_ext namespace 297 class PyBuildExt(build_ext): 300 build_ext.__init__(self, dist) 512 build_ext.build_extensions(self) 610 build_ext.build_extension(self, ext) 1611 cmdclass = {'build_ext': PyBuildExt, 1615 # A dummy module is defined here, because build_ext won't be
|
/third_party/selinux/libselinux/src/ |
H A D | Makefile | 147 CFLAGS="$(CFLAGS) $(SWIG_CFLAGS)" $(PYTHON) setup.py build_ext
|
Completed in 8 milliseconds