Home
last modified time | relevance | path

Searched +full:- +full:- +full:pylib (Results 1 – 25 of 25) sorted by relevance

/third_party/node/deps/npm/node_modules/node-gyp/gyp/
Dgyp_main.py4 # Use of this source code is governed by a BSD-style license that can be
13 # Below IsCygwin() function copied from pylib/gyp/common.py
21 stdout = stdout.decode("utf-8")
31 out = subprocess.Popen(["cygpath", "-u", path],
36 stdout = stdout.decode("utf-8")
42 # Make sure we're using the version of pylib in this repo, not one installed
46 sys.path.insert(0, os.path.join(os.path.dirname(path), 'pylib'))
Dsetup.py4 # Use of this source code is governed by a BSD-style license that can be
14 author_email='chromium-dev@googlegroups.com',
16 package_dir = {'': 'pylib'},
DPRESUBMIT.py2 # Use of this source code is governed by a BSD-style license that can be
6 """Top-level presubmit script for GYP.
8 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
28 # Attempting to unpack a non-sequence.
32 # Some use of built-in names.
85 r'.*? Use of this source code is governed by a BSD-style license that '
106 'http://gyp-status.appspot.com/status',
107 'http://gyp-status.appspot.com/current'))
113 sys.path = ['pylib', 'test/lib'] + sys.path
/third_party/node/tools/gyp/
Dgyp_main.py4 # Use of this source code is governed by a BSD-style license that can be
15 # Function copied from pylib/gyp/common.py
22 stdout = stdout.decode("utf-8")
33 ["cygpath", "-u", path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT
37 stdout = stdout.decode("utf-8")
43 # Make sure we're using the version of pylib in this repo, not one installed
47 sys.path.insert(0, os.path.join(os.path.dirname(path), "pylib"))
Dsetup.py4 # Use of this source code is governed by a BSD-style license that can be
17 name="gyp-next",
24 url="https://github.com/nodejs/gyp-next",
25 package_dir={"": "pylib"},
30 "Development Status :: 3 - Alpha",
Dtest_gyp.py3 # Use of this source code is governed by a BSD-style license that can be
6 """gyptest.py -- test runner for GYP tests."""
35 parser.add_argument("-a", "--all", action="store_true", help="run all tests")
36 parser.add_argument("-C", "--chdir", action="store", help="change to directory")
38 "-f",
39 "--format",
45 "-G",
46 "--gyp_option",
49 help="Add -G options to the gyp command line",
52 "-l", "--list", action="store_true", help="list available tests and exit"
[all …]
/third_party/node/deps/npm/scripts/
Drelease.sh7 set -e
9 rm -rf release *.tgz || true
10 rm node_modules/node-gyp/gyp/pylib/gyp/*.pyc || true
11 rm node_modules/node-gyp/gyp/pylib/gyp/generator/*.pyc || true
13 node ./bin/npm-cli.js pack --loglevel error >/dev/null
18 cp -r ../tap-snapshots package/
19 cp -r ../test package/
26 zipname=npm-$(node ../bin/npm-cli.js -v).zip
27 zip -q -9 -r -X "$zipname" *.cmd node_modules
31 tarname=npm-$(node ../../bin/npm-cli.js -v).tgz
[all …]
/third_party/flutter/engine/flutter/sky/tools/roll/patches/chromium/
Dandroid_build.patch1 --- a/build/android/pylib/constants/__init__.py
2 +++ b/build/android/pylib/constants/__init__.py
3 @@ -184,7 +184,7 @@ class ANDROID_SDK_VERSION_CODES(object):
7 -ANDROID_SDK_BUILD_TOOLS_VERSION = '22.0.0'
12 --- a/build/common.gypi
14 @@ -1682,7 +1682,7 @@
15 'android_host_arch%': '<!(uname -m)',
16 # Android API-level of the SDK used for compilation.
18 - 'android_sdk_build_tools_version%': '22.0.0',
20 'host_os%': "<!(uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')",
[all …]
/third_party/skia/third_party/externals/angle2/third_party/logdog/
DREADME.chromium3 URL: https://chromium.googlesource.com/infra/luci/luci-py/client/libs/logdog
11 This is used from build/android/pylib/utils/logdog_helper.py
Dget.sh3 # Use of this source code is governed by a BSD-style license that can be
6 set -eux
12 rm -rf logdog
13 git clone https://chromium.googlesource.com/infra/luci/luci-py/client/libs/logdog
19 rm -rf .git tests
25 URL: https://chromium.googlesource.com/infra/luci/luci-py/client/libs/logdog
33 This is used from build/android/pylib/utils/logdog_helper.py
/third_party/node/tools/
Dgyp_node.py9 sys.path.insert(0, os.path.join(node_root, 'tools', 'gyp', 'pylib'))
27 args.extend(['-I', common_fn])
30 args.extend(['-I', options_fn])
33 args.extend(['-I', options_fips_fn])
35 args.append('--depth=' + node_root)
40 args.extend(['--generator-output', output_dir])
43 args.extend(['-Goutput_dir=' + output_dir])
45 args.append('-Dcomponent=static_library')
46 args.append('-Dlibrary=static_library')
/third_party/python/.github/workflows/
Dcoverage.yml6 - master
7 - 3.8
8 - 3.7
9 paths-ignore:
10 - 'Doc/**'
11 - 'Misc/**'
14 # - master
15 # - 3.8
16 # - 3.7
17 # paths-ignore:
[all …]
/third_party/python/.azure-pipelines/
Dposix-steps.yml9 - checkout: self
14 - script: sudo setfacl -Rb /home/vsts
17 - script: ${{ parameters.sudo_dependencies }} ./.azure-pipelines/posix-deps-${{ parameters.dependen…
20 - script: ./configure --with-pydebug
23 - script: make -j4
26 - ${{ if eq(parameters.coverage, 'true') }}:
27 - script: ./python -m venv venv && ./venv/bin/python -m pip install -U coverage
30 - script: ./venv/bin/python -m test.pythoninfo
33 - script: |
34 $COMMAND -m coverage run --pylib -m test \
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/test/
Dtest-configure-python.js6 const gyp = require('../lib/node-gyp')
7 const requireInject = require('require-inject')
9 'graceful-fs': {
17 const EXPECTED_PYPATH = path.join(__dirname, '..', 'gyp', 'pylib')
/third_party/boringssl/src/util/bot/
Dvs_toolchain.py2 # Use of this source code is governed by a BSD-style license that can be
14 sys.path.insert(0, os.path.join(script_dir, 'gyp', 'pylib'))
62 # Include the VS runtime in the PATH in case it's not machine-installed.
114 '--output-json', json_data_file,
Dupdate_clang.py3 # Use of this source code is governed by a BSD-style license that can be
26 PACKAGE_VERSION = '%s-%s-%s' % (CLANG_SVN_REVISION, CLANG_REVISION[:8],
31 LLVM_BUILD_DIR = os.path.join(THIS_DIR, 'llvm-build')
34 # URL for pre-built binaries.
36 'https://commondatastorage.googleapis.com/chromium-browser-clang')
58 total_size = int(response.info().getheader('Content-Length').strip())
68 sys.stdout.write('.' * (num_dots - dots_printed))
81 num_retries -= 1
121 # Subversion can leave read-only files around.
149 # or a system-wide installation otherwise.
[all …]
/third_party/python/
D.travis.yml4 # To cache doc-building dependencies and C compiler output.
6 - pip
7 - ccache
8 - directories:
9 - $HOME/multissl
13 - OPENSSL=1.1.1f
14 - OPENSSL_DIR="$HOME/multissl/openssl/${OPENSSL}"
15 - PATH="${OPENSSL_DIR}/bin:$PATH"
16 - CFLAGS="-I${OPENSSL_DIR}/include"
17 - LDFLAGS="-L${OPENSSL_DIR}/lib"
[all …]
/third_party/python/Lib/idlelib/idle_test/
DREADME.txt8 python -m test.test_idle
10 Human-mediated tests were added later in 3.4.
12 python -m idlelib.idle_test.htest
99 - The tests are being run by regrtest.py, and it was started without
100 enabling the "gui" resource with the "-u" command line option.
102 - The tests are being run on Windows by a service that is not allowed
105 - The tests are being run on Linux and X Windows is not available.
107 - The tests are being run on Mac OSX in a process that cannot make a
110 - tkinter.Tk cannot be successfully instantiated for some reason.
112 - test.support.use_resources has been set by something other than
[all …]
/third_party/skia/third_party/externals/angle2/
D.vpython5 # (since pure-python dependencies can be easily vendored into third_party).
10 # this never requires the end-user machine to have a working python extension
20 # vpython path/to/script.py some --arguments
26 # https://chromium.googlesource.com/infra/luci/luci-go/+/main/vpython/api/vpython/spec.proto
33 name: "infra/python/wheels/jsonlines-py2_py3"
64 name: "infra/python/wheels/parameterized-py2_py3"
125 name: "infra/python/wheels/pyfakefs-py2_py3"
132 name: "infra/python/wheels/google_compute_engine-py2_py3"
136 name: "infra/python/wheels/boto-py2_py3"
148 # build/android/pylib/local/emulator/avd.py
[all …]
/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/
Dlookup_dep.py3 # Use of this source code is governed by a BSD-style license that can be
10 It is a best-effort script.
33 from pylib import constants
43 arg_parser.add_argument('-C', '--output-directory', help='Build output directory.')
44 arg_parser.add_argument('--build', action='store_true', help='Build all .build_config files.')
46 arg_parser.add_argument('-v', '--verbose', action='store_true', help='Verbose logging.')
74 print('Showing potentially stale results. Run lookup.dep.py with --build '
111 def match(self, search_string: str) -> List[ClassEntry]:
139 def _entries_for(self, class_name) -> List[ClassEntry]:
142 def _index_root(self) -> Dict[str, List[str]]:
[all …]
/third_party/node/deps/npm/node_modules/node-gyp/lib/
Dconfigure.js3 const fs = require('graceful-fs')
8 const processRelease = require('./process-release')
10 const findNodeDirectory = require('./find-node-directory')
12 var findPython = require('./find-python')
14 var findVisualStudio = require('./find-visualstudio')
39 // --nodedir was specified. use that for the dev files
42 log.verbose('get node dir', 'compiling against specified --nodedir dev files: %s', nodeDir)
45 // if no --nodedir specified, ensure node dependencies are installed
47 // if --target was given, then determine a target version to compile for
48 log.verbose('get node dir', 'compiling against --target node version: %s', release.version)
[all …]
/third_party/gn/src/gn/
Dxcode_object.h2 // Use of this source code is governed by a BSD-style license that can be
23 // https://chromium.googlesource.com/external/gyp/+/master/pylib/gyp/xcodeproj_file.py
31 // PBXObjectClass -------------------------------------------------------------
52 // Forward-declarations -------------------------------------------------------
73 // PBXObjectVisitor -----------------------------------------------------------
85 // PBXObject ------------------------------------------------------------------
109 // PBXBuildPhase --------------------------------------------------------------
120 // PBXTarget ------------------------------------------------------------------
147 // PBXAggregateTarget ---------------------------------------------------------
165 // PBXBuildFile ---------------------------------------------------------------
[all …]
/third_party/skia/third_party/externals/angle2/scripts/
Dprocess_angle_perf_results.py4 # Use of this source code is governed by a BSD-style license that can be
44 from pylib.utils import logdog_helper
64 '--buildername',
66 '--buildnumber',
68 '--name',
70 '--configuration-name',
72 '--results-file',
74 '--results-url',
76 '--output-json-file',
78 '--perf-dashboard-machine-group',
[all …]
/third_party/node/
Dconfigure.py35 sys.path.insert(0, os.path.join('tools', 'gyp', 'pylib'))
61 valid_arm_fpu = ('vfp', 'vfpv3', 'vfpv3-d16', 'neon')
65 valid_intl_modes = ('none', 'small-icu', 'full-icu', 'system-icu')
72 "built-in dependencies or its shared representations. If necessary, "
80 # Options should be in alphabetical order but keep --prefix at the top,
82 parser.add_option('--prefix',
88 parser.add_option('--coverage',
93 parser.add_option('--debug',
98 parser.add_option('--debug-node',
103 parser.add_option('--dest-cpu',
[all …]
/third_party/python/Doc/whatsnew/
D2.5.rst9 .. $Id: whatsnew25.tex 56611 2007-07-29 08:26:10Z georg.brandl $
18 community, I think, because several widely-useful packages were added. New
26 see section :ref:`pep-308`. The new ':keyword:`with`' statement will make
27 writing cleanup code easier (section :ref:`pep-343`). Values can now be passed
28 into generators (section :ref:`pep-342`). Imports are now visible as either
29 absolute or relative (section :ref:`pep-328`). Some corner cases of exception
30 handling are handled better (section :ref:`pep-341`). All these improvements
46 e-mail them to the author or open a bug in the Python bug tracker.
51 .. _pep-308:
66 There have been endless tedious discussions of syntax on both python-dev and
[all …]