Home
last modified time | relevance | path

Searched refs:patch_file (Results 1 – 7 of 7) sorted by relevance

/third_party/cef/tools/
Dpatch_updater.py163 patch_file = os.path.join(patches_dir, patch['name'] + '.patch') variable
165 if os.path.isfile(patch_file):
166 msg('Reading patch file %s' % patch_file)
173 patch_paths = extract_paths(patch_file)
231 patch_string = open(patch_file, 'rb').read()
288 msg('Saving changes to %s' % patch_file)
307 msg('Converting to Posix line endings for %s' % patch_file)
310 f = open(patch_file, 'w', encoding='utf-8')
314 raise Exception('Patch file does not exist: %s' % patch_file)
Dpatcher.py31 def apply_patch_file(patch_file, patch_dir): argument
33 patch_path = os.path.join(cef_patch_dir, 'patches', patch_file + '.patch')
64 patch_file = patch['name']
70 sys.stdout.write('\nSkipping patch file %s\n' % patch_file)
74 result = apply_patch_file(patch_file, patch['path']
/third_party/libpng/
Dinstall.py48 def apply_patch(patch_file, target_dir): argument
52 …patch_cmd = ['patch', '-p1', "--fuzz=0", "--no-backup-if-mismatch", '-i', patch_file, '-d', target…
60 patch_file = [
68 for patch in patch_file:
/third_party/curl/
Dinstall.py144 patch_file = os.path.join(patch_path, patch)
145 if os.path.exists(patch_file):
146 cmd = "cd %s; patch -p1 < %s 2>&1; echo $?;" % (Patch._source_path, patch_file)
149 CurlLog.info("%s patch result empty" % (patch_file))
153 CurlLog.error("patch error %s" % (patch_file))
160 CurlLog.error("patch does not exits %s" % (patch_file))
/third_party/nghttp2/
Dgit-clang-format269 def extract_lines(patch_file): argument
279 for line in patch_file:
/third_party/flutter/skia/third_party/externals/dawn/scripts/
Dgit-clang-format293 def extract_lines(patch_file): argument
303 for line in patch_file:
/third_party/cef/tools/automate/
Dautomate-git.py276 patch_file = os.path.join(cef_dir, 'patch', 'patches', name)
277 if os.path.exists(patch_file + ".patch"):
281 (python_exe, patch_tool, patch_file,