Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: scripts/slave/recipes/skia/swarm_compile.expected/Build-Ubuntu-GCC-x86_64-Release-PDFium.json

Issue 2402583003: Revert "Fix file.copy recipe_module to not fail if files are already equal." (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n", 6 "\nimport sys, os\npath = sys.argv[1]\nmode = int(sys.argv[2])\nif not os. path.isdir(path):\n if os.path.exists(path):\n print \"%s exists but is not a dir\" % path\n sys.exit(1)\n os.makedirs(path, mode)\n",
7 "[CUSTOM_/_B_WORK]", 7 "[CUSTOM_/_B_WORK]",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs checkout_path", 10 "name": "makedirs checkout_path",
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep ot_tools]:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[depot_tools]", 195 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[dep ot_tools]:RECIPE_PACKAGE_REPO[depot_tools]:RECIPE_PACKAGE_REPO[depot_tools]",
196 "PYTHONPATH": "[BUILD]/scripts", 196 "PYTHONPATH": "[BUILD]/scripts",
197 "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Release-PD Fium" 197 "SKIA_OUT": "[CUSTOM_/_B_WORK]/skia/out/Build-Ubuntu-GCC-x86_64-Release-PD Fium"
198 }, 198 },
199 "name": "gn_gen" 199 "name": "gn_gen"
200 }, 200 },
201 { 201 {
202 "cmd": [ 202 "cmd": [
203 "python", 203 "python",
204 "-u", 204 "-u",
205 "\nimport shutil\nimport sys\n# Apparently, shutil.copy fails if files are binary-equal on *nix OSes.\n# See http://crbug.com/636168#c8.\nif hasattr(shuti l, '_samefile'):\n if shutil._samefile(sys.argv[1], sys.argv[2]):\n sys.exit (0)\nshutil.copy(sys.argv[1], sys.argv[2])\n", 205 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
206 "[CUSTOM_/_B_WORK]/pdfium/DEPS", 206 "[CUSTOM_/_B_WORK]/pdfium/DEPS",
207 "/path/to/tmp/" 207 "/path/to/tmp/"
208 ], 208 ],
209 "name": "read PDFium DEPS" 209 "name": "read PDFium DEPS"
210 }, 210 },
211 { 211 {
212 "cmd": [ 212 "cmd": [
213 "python", 213 "python",
214 "-u", 214 "-u",
215 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 215 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst_path)@@@", 288 "@@@STEP_LOG_LINE@python.inline@ shutil.move(f, dst_path)@@@",
289 "@@@STEP_LOG_END@python.inline@@@" 289 "@@@STEP_LOG_END@python.inline@@@"
290 ] 290 ]
291 }, 291 },
292 { 292 {
293 "name": "$result", 293 "name": "$result",
294 "recipe_result": null, 294 "recipe_result": null,
295 "status_code": 0 295 "status_code": 0
296 } 296 }
297 ] 297 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698