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

Side by Side Diff: scripts/slave/recipes/skia/swarm_compile.expected/Build-Win-MSVC-x86-Debug.json

Issue 1920283002: Modify Skia recipes to allow running XSAN on Swarming. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Changes based on code review. Created 4 years, 7 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_C:\\_B_CACHE]", 7 "[CUSTOM_C:\\_B_CACHE]",
8 "511" 8 "511"
9 ], 9 ],
10 "name": "makedirs checkout_path", 10 "name": "makedirs checkout_path",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "SKIA_OUT": "[CUSTOM_C:\\_B_CACHE]\\skia\\out\\Build-Win-MSVC-x86-Debug" 142 "SKIA_OUT": "[CUSTOM_C:\\_B_CACHE]\\skia\\out\\Build-Win-MSVC-x86-Debug"
143 }, 143 },
144 "name": "build most" 144 "name": "build most"
145 }, 145 },
146 { 146 {
147 "cmd": [ 147 "cmd": [
148 "python", 148 "python",
149 "-u", 149 "-u",
150 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nan obench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so ', 'iOSShell.app', 'iOSShell.ipa']\n\ntry:\n os.makedirs(dst)\nexcept OSError a s e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_ whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdi r(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_ path)\n", 150 "import errno\nimport glob\nimport os\nimport shutil\nimport sys\n\nsrc = sys.argv[1]\ndst = sys.argv[2]\nbuild_products_whitelist = ['dm', 'dm.exe', 'nan obench', 'nanobench.exe', '*.so', '*.dll', '*.dylib', 'skia_launcher', 'lib/*.so ', 'iOSShell.app', 'iOSShell.ipa']\n\ntry:\n os.makedirs(dst)\nexcept OSError a s e:\n if e.errno != errno.EEXIST:\n raise\n\nfor pattern in build_products_ whitelist:\n path = os.path.join(src, pattern)\n for f in glob.glob(path):\n dst_path = os.path.join(dst, os.path.relpath(f, src))\n if not os.path.isdi r(os.path.dirname(dst_path)):\n os.makedirs(os.path.dirname(dst_path))\n print 'Copying build product %s to %s' % (f, dst_path)\n shutil.move(f, dst_ path)\n",
151 "[CUSTOM_C:\\_B_CACHE]\\skia\\out\\Build-Win-MSVC-x86-Debug\\Debug", 151 "[CUSTOM_C:\\_B_CACHE]\\skia\\out\\Build-Win-MSVC-x86-Debug\\Debug",
152 "[SWARM_OUT_DIR]\\out\\Debug" 152 "[CUSTOM_[SWARM_OUT_DIR]]\\out\\Debug"
153 ], 153 ],
154 "name": "copy build products", 154 "name": "copy build products",
155 "~followup_annotations": [ 155 "~followup_annotations": [
156 "@@@STEP_LOG_LINE@python.inline@import errno@@@", 156 "@@@STEP_LOG_LINE@python.inline@import errno@@@",
157 "@@@STEP_LOG_LINE@python.inline@import glob@@@", 157 "@@@STEP_LOG_LINE@python.inline@import glob@@@",
158 "@@@STEP_LOG_LINE@python.inline@import os@@@", 158 "@@@STEP_LOG_LINE@python.inline@import os@@@",
159 "@@@STEP_LOG_LINE@python.inline@import shutil@@@", 159 "@@@STEP_LOG_LINE@python.inline@import shutil@@@",
160 "@@@STEP_LOG_LINE@python.inline@import sys@@@", 160 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
161 "@@@STEP_LOG_LINE@python.inline@@@@", 161 "@@@STEP_LOG_LINE@python.inline@@@@",
162 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@", 162 "@@@STEP_LOG_LINE@python.inline@src = sys.argv[1]@@@",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "@@@STEP_LOG_LINE@python.inline@ pass@@@", 197 "@@@STEP_LOG_LINE@python.inline@ pass@@@",
198 "@@@STEP_LOG_END@python.inline@@@" 198 "@@@STEP_LOG_END@python.inline@@@"
199 ] 199 ]
200 }, 200 },
201 { 201 {
202 "name": "$result", 202 "name": "$result",
203 "recipe_result": null, 203 "recipe_result": null,
204 "status_code": 0 204 "status_code": 0
205 } 205 }
206 ] 206 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698