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

Side by Side Diff: scripts/slave/recipes/webrtc/standalone.expected/tryserver_webrtc_android_compile_arm64_dbg.json

Issue 1917243002: Revert "build: roll infra_paths changes" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
7 "--master", 7 "--master",
8 "tryserver.webrtc", 8 "tryserver.webrtc",
9 "--builder", 9 "--builder",
10 "android_compile_arm64_dbg", 10 "android_compile_arm64_dbg",
11 "--slave", 11 "--slave",
12 "slavename", 12 "slavename",
13 "--spec", 13 "--spec",
14 "cache_dir = '[ROOT]/b/build/slave/cache_dir'\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.co m/external/webrtc'}, {'deps_file': 'DEPS', 'managed': True, 'name': 'webrtc-limi ted', 'url': 'https://chrome-internal.googlesource.com/chrome/deps/webrtc-limite d'}]\ntarget_os = ['android']", 14 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/external/webrtc'} , {'deps_file': 'DEPS', 'managed': True, 'name': 'webrtc-limited', 'url': 'https ://chrome-internal.googlesource.com/chrome/deps/webrtc-limited'}]\ntarget_os = [ 'android']",
15 "--root", 15 "--root",
16 "src", 16 "src",
17 "--revision_mapping_file", 17 "--revision_mapping_file",
18 "{\"src\": \"got_revision\"}", 18 "{\"src\": \"got_revision\"}",
19 "--git-cache-dir", 19 "--git-cache-dir",
20 "[ROOT]/b/build/slave/cache_dir", 20 "[GIT_CACHE]",
21 "--issue", 21 "--issue",
22 "666666", 22 "666666",
23 "--patchset", 23 "--patchset",
24 "1", 24 "1",
25 "--rietveld_server", 25 "--rietveld_server",
26 "https://fake.rietveld.url", 26 "https://fake.rietveld.url",
27 "--output_json", 27 "--output_json",
28 "/path/to/tmp/json", 28 "/path/to/tmp/json",
29 "--revision", 29 "--revision",
30 "src@12345", 30 "src@12345",
31 "--output_manifest" 31 "--output_manifest"
32 ], 32 ],
33 "cwd": "[SLAVE_BUILD]",
33 "env": { 34 "env": {
34 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" 35 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
35 }, 36 },
36 "name": "bot_update", 37 "name": "bot_update",
37 "~followup_annotations": [ 38 "~followup_annotations": [
38 "@@@STEP_TEXT@Some step text@@@", 39 "@@@STEP_TEXT@Some step text@@@",
39 "@@@STEP_LOG_LINE@json.output@{@@@", 40 "@@@STEP_LOG_LINE@json.output@{@@@",
40 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@", 41 "@@@STEP_LOG_LINE@json.output@ \"did_run\": true, @@@",
41 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@", 42 "@@@STEP_LOG_LINE@json.output@ \"fixed_revisions\": {@@@",
42 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@", 43 "@@@STEP_LOG_LINE@json.output@ \"src\": \"12345\"@@@",
(...skipping 16 matching lines...) Expand all
59 "@@@STEP_LOG_END@json.output@@@", 60 "@@@STEP_LOG_END@json.output@@@",
60 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5 8cb9\"@@@", 61 "@@@SET_BUILD_PROPERTY@got_revision@\"f27fede2220bcd326aee3e86ddfd4ebd0fe5 8cb9\"@@@",
61 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@" 62 "@@@SET_BUILD_PROPERTY@got_revision_cp@\"refs/heads/master@{#170242}\"@@@"
62 ] 63 ]
63 }, 64 },
64 { 65 {
65 "cmd": [ 66 "cmd": [
66 "python", 67 "python",
67 "-u", 68 "-u",
68 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py", 69 "RECIPE_MODULE[build::webrtc]/resources/cleanup_files.py",
69 "[CWD]/src/out" 70 "[SLAVE_BUILD]/src/out"
70 ], 71 ],
72 "cwd": "[SLAVE_BUILD]",
71 "name": "clean test output files" 73 "name": "clean test output files"
72 }, 74 },
73 { 75 {
74 "cmd": [ 76 "cmd": [
75 "python", 77 "python",
76 "-u", 78 "-u",
77 "\nimport shutil, sys, os\nshutil.rmtree(sys.argv[1], True)\nshutil.rmtree (sys.argv[2], True)\ntry:\n os.remove(sys.argv[3])\nexcept OSError:\n pass\nfo r base, _dirs, files in os.walk(sys.argv[4]):\n for f in files:\n if f.endsw ith('.pyc'):\n os.remove(os.path.join(base, f))\n", 79 "\nimport shutil, sys, os\nshutil.rmtree(sys.argv[1], True)\nshutil.rmtree (sys.argv[2], True)\ntry:\n os.remove(sys.argv[3])\nexcept OSError:\n pass\nfo r base, _dirs, files in os.walk(sys.argv[4]):\n for f in files:\n if f.endsw ith('.pyc'):\n os.remove(os.path.join(base, f))\n",
78 "[CWD]/src/out/Debug/debug_info_dumps", 80 "[SLAVE_BUILD]/src/out/Debug/debug_info_dumps",
79 "[CWD]/src/out/Debug/test_logs", 81 "[SLAVE_BUILD]/src/out/Debug/test_logs",
80 "[CWD]/src/out/build_product.zip", 82 "[SLAVE_BUILD]/src/out/build_product.zip",
81 "[CWD]/src" 83 "[SLAVE_BUILD]/src"
82 ], 84 ],
85 "cwd": "[SLAVE_BUILD]",
83 "name": "clean local files", 86 "name": "clean local files",
84 "~followup_annotations": [ 87 "~followup_annotations": [
85 "@@@STEP_LOG_LINE@python.inline@@@@", 88 "@@@STEP_LOG_LINE@python.inline@@@@",
86 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@", 89 "@@@STEP_LOG_LINE@python.inline@import shutil, sys, os@@@",
87 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@", 90 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1], True)@@@",
88 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@", 91 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[2], True)@@@",
89 "@@@STEP_LOG_LINE@python.inline@try:@@@", 92 "@@@STEP_LOG_LINE@python.inline@try:@@@",
90 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@", 93 "@@@STEP_LOG_LINE@python.inline@ os.remove(sys.argv[3])@@@",
91 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@", 94 "@@@STEP_LOG_LINE@python.inline@except OSError:@@@",
92 "@@@STEP_LOG_LINE@python.inline@ pass@@@", 95 "@@@STEP_LOG_LINE@python.inline@ pass@@@",
93 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv [4]):@@@", 96 "@@@STEP_LOG_LINE@python.inline@for base, _dirs, files in os.walk(sys.argv [4]):@@@",
94 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@", 97 "@@@STEP_LOG_LINE@python.inline@ for f in files:@@@",
95 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@", 98 "@@@STEP_LOG_LINE@python.inline@ if f.endswith('.pyc'):@@@",
96 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@" , 99 "@@@STEP_LOG_LINE@python.inline@ os.remove(os.path.join(base, f))@@@" ,
97 "@@@STEP_LOG_END@python.inline@@@" 100 "@@@STEP_LOG_END@python.inline@@@"
98 ] 101 ]
99 }, 102 },
100 { 103 {
101 "cmd": [ 104 "cmd": [
102 "python", 105 "python",
103 "-u", 106 "-u",
104 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", 107 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py",
105 "runhooks" 108 "runhooks"
106 ], 109 ],
110 "cwd": "[SLAVE_BUILD]",
107 "env": { 111 "env": {
108 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 112 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
109 "GYP_CROSSCOMPILE": "1", 113 "GYP_CROSSCOMPILE": "1",
110 "GYP_DEFINES": "OS=android component=static_library dcheck_always_on=1 fas tbuild=1 gomadir='[ROOT]/b/build/goma' target_arch=arm64 use_goma=1", 114 "GYP_DEFINES": "OS=android component=static_library dcheck_always_on=1 fas tbuild=1 gomadir='[BUILD]/goma' target_arch=arm64 use_goma=1",
111 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/ build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" 115 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
112 }, 116 },
113 "name": "gclient runhooks" 117 "name": "gclient runhooks"
114 }, 118 },
115 { 119 {
116 "cmd": [ 120 "cmd": [
117 "python", 121 "python",
118 "-u", 122 "-u",
119 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", 123 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py",
120 "--show-path", 124 "--show-path",
121 "python", 125 "python",
122 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py", 126 "RECIPE_PACKAGE_REPO[build]/scripts/slave/compile.py",
123 "--gsutil-py-path", 127 "--gsutil-py-path",
124 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", 128 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py",
125 "--ninja-path", 129 "--ninja-path",
126 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", 130 "RECIPE_PACKAGE_REPO[depot_tools]/ninja",
127 "--target", 131 "--target",
128 "Debug", 132 "Debug",
129 "--src-dir", 133 "--src-dir",
130 "[CWD]/src", 134 "[SLAVE_BUILD]/src",
131 "--goma-cache-dir", 135 "--goma-cache-dir",
132 "[ROOT]/b/build/slave/goma_cache", 136 "[GOMA_CACHE]",
133 "--build-tool", 137 "--build-tool",
134 "ninja", 138 "ninja",
135 "--compiler", 139 "--compiler",
136 "goma", 140 "goma",
137 "--goma-jsonstatus", 141 "--goma-jsonstatus",
138 "/path/to/tmp/json", 142 "/path/to/tmp/json",
139 "--goma-service-account-json-file", 143 "--goma-service-account-json-file",
140 "/creds/service_accounts/service-account-goma-client.json", 144 "/creds/service_accounts/service-account-goma-client.json",
141 "--goma-dir", 145 "--goma-dir",
142 "[ROOT]/b/build/goma", 146 "[BUILD]/goma",
143 "--goma-fail-fast", 147 "--goma-fail-fast",
144 "--goma-disable-local-fallback", 148 "--goma-disable-local-fallback",
145 "--" 149 "--"
146 ], 150 ],
151 "cwd": "[SLAVE_BUILD]",
147 "env": { 152 "env": {
148 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 153 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
149 "PATH": "[CWD]/src/third_party/android_tools/sdk/platform-tools:[CWD]/src/ build/android:%(PATH)s" 154 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
150 }, 155 },
151 "name": "compile", 156 "name": "compile",
152 "~followup_annotations": [ 157 "~followup_annotations": [
153 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", 158 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@",
154 "@@@STEP_LOG_END@json.output (invalid)@@@" 159 "@@@STEP_LOG_END@json.output (invalid)@@@"
155 ] 160 ]
156 }, 161 },
157 { 162 {
158 "name": "$result", 163 "name": "$result",
159 "recipe_result": null, 164 "recipe_result": null,
160 "status_code": 0 165 "status_code": 0
161 } 166 }
162 ] 167 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698