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

Side by Side Diff: scripts/slave/recipes/swarming/deterministic_build.expected/full_chromium_swarm_Linux_deterministic_build.json

Issue 660873003: Deterministic build: Support Goma. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 6 years, 1 month 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 "[BUILD]/scripts/slave/bot_update.py", 6 "[BUILD]/scripts/slave/bot_update.py",
7 "--master", 7 "--master",
8 "chromium.swarm", 8 "chromium.swarm",
9 "--builder", 9 "--builder",
10 "Linux deterministic build", 10 "Linux deterministic build",
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 ] 72 ]
73 }, 73 },
74 { 74 {
75 "cmd": [ 75 "cmd": [
76 "python", 76 "python",
77 "-u", 77 "-u",
78 "[DEPOT_TOOLS]/gclient.py", 78 "[DEPOT_TOOLS]/gclient.py",
79 "runhooks" 79 "runhooks"
80 ], 80 ],
81 "env": { 81 "env": {
82 "GYP_DEFINES": "component=static_library dont_embed_build_metadata=1 targe t_arch=ia32" 82 "GYP_DEFINES": "component=static_library dont_embed_build_metadata=1 gomad ir='[BUILD]/goma' target_arch=ia32 use_goma=1"
83 }, 83 },
84 "name": "gclient runhooks" 84 "name": "gclient runhooks"
85 }, 85 },
86 { 86 {
87 "cmd": [ 87 "cmd": [
88 "python", 88 "python",
89 "-u", 89 "-u",
90 "[BUILD]/scripts/slave/compile.py", 90 "[BUILD]/scripts/slave/compile.py",
91 "--target", 91 "--target",
92 "Release", 92 "Release",
93 "--src-dir", 93 "--src-dir",
94 "[SLAVE_BUILD]/src", 94 "[SLAVE_BUILD]/src",
95 "--build-tool", 95 "--build-tool",
96 "ninja", 96 "ninja",
97 "--compiler",
98 "goma",
99 "--goma-dir",
100 "[BUILD]/goma",
97 "--clobber", 101 "--clobber",
98 "--", 102 "--",
99 "chrome_run" 103 "chrome_run"
100 ], 104 ],
101 "name": "First build" 105 "name": "First build"
102 }, 106 },
103 { 107 {
104 "cmd": [ 108 "cmd": [
105 "python", 109 "python",
106 "-u", 110 "-u",
(...skipping 30 matching lines...) Expand all
137 "cmd": [ 141 "cmd": [
138 "python", 142 "python",
139 "-u", 143 "-u",
140 "[BUILD]/scripts/slave/compile.py", 144 "[BUILD]/scripts/slave/compile.py",
141 "--target", 145 "--target",
142 "Release", 146 "Release",
143 "--src-dir", 147 "--src-dir",
144 "[SLAVE_BUILD]/src", 148 "[SLAVE_BUILD]/src",
145 "--build-tool", 149 "--build-tool",
146 "ninja", 150 "ninja",
151 "--compiler",
152 "goma",
153 "--goma-dir",
154 "[BUILD]/goma",
147 "--clobber", 155 "--clobber",
148 "--", 156 "--",
149 "chrome_run" 157 "chrome_run"
150 ], 158 ],
151 "name": "Second build" 159 "name": "Second build"
152 }, 160 },
153 { 161 {
154 "cmd": [ 162 "cmd": [
155 "python", 163 "python",
156 "-u", 164 "-u",
(...skipping 20 matching lines...) Expand all
177 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/compare_build_arti facts.py", 185 "[BUILD]/scripts/slave/recipe_modules/isolate/resources/compare_build_arti facts.py",
178 "--first-build-dir", 186 "--first-build-dir",
179 "[SLAVE_BUILD]/src/out/Release.1", 187 "[SLAVE_BUILD]/src/out/Release.1",
180 "--second-build-dir", 188 "--second-build-dir",
181 "[SLAVE_BUILD]/src/out/Release.2" 189 "[SLAVE_BUILD]/src/out/Release.2"
182 ], 190 ],
183 "cwd": "[SLAVE_BUILD]", 191 "cwd": "[SLAVE_BUILD]",
184 "name": "compare_build_artifacts.py" 192 "name": "compare_build_artifacts.py"
185 } 193 }
186 ] 194 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698