Home
last modified time | relevance | path

Searched refs:setup_py (Results 1 – 4 of 4) sorted by relevance

/external/libxml2/python/
Dmeson.build20 setup_py = configuration_data() cfgdata
21 setup_py.set('prefix', get_option('prefix'))
22 setup_py.set('LIBXML_VERSION', meson.project_version())
23 setup_py.set('WITH_ICONV', want_iconv.to_int())
24 setup_py.set('WITH_ICU', want_icu.to_int())
25 setup_py.set('WITH_LZMA', want_lzma.to_int())
26 setup_py.set('WITH_ZLIB', want_zlib.to_int())
27 setup_py.set('WITH_THREADS', want_threads.to_int())
31 configuration: setup_py,
/external/dtc/pylibfdt/
Dmeson.build1 setup_py = find_program('../setup.py') variable
2 setup_py = [setup_py.path(), '--quiet', '--top-builddir', meson.project_build_root()] variable
8 command: [setup_py, 'build_ext', '--build-lib=' + meson.current_build_dir()],
12 meson.add_install_script(setup_py, 'install', '--prefix=' + get_option('prefix'), '--root=$DESTDIR')
/external/autotest/utils/
Dexternal_packages.py259 egg_path = self._build_egg_using_setup_py(setup_py='setup.py')
267 egg_path = self._build_egg_using_setup_py(setup_py='setupegg.py')
341 def _build_using_setup_py(self, setup_py='setup.py'): argument
350 if not os.path.exists(setup_py):
351 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
352 status = system("'%s' %s build" % (sys.executable, setup_py))
359 def _build_egg_using_setup_py(self, setup_py='setup.py'): argument
368 if not os.path.exists(setup_py):
369 raise Error('%s does not exist in %s' % (setup_py, os.getcwd()))
373 status = system("'%s' %s bdist_egg" % (sys.executable, setup_py))
[all …]
/external/pigweed/pw_build/py/pw_build/
Dpython_package.py125 def setup_py(self) -> Path: member in PythonPackage
126 setup_py = [
132 assert len(setup_py) == 1
133 return setup_py[0]