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

Side by Side Diff: scripts/slave/recipes/chromium_gn.expected/unittest_basic.json

Issue 211473006: Add GN (the build tool) to the chromium.linux buildbots and try jobs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: merge to r260023 Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "[DEPOT_TOOLS]/gclient.py", 6 "[DEPOT_TOOLS]/gclient.py",
7 "config", 7 "config",
8 "--spec", 8 "--spec",
9 "cache_dir = None\nsolutions = [{'custom_vars': {'googlecode_url': 'svn:// svn-mirror.golo.chromium.org/%s', 'nacl_trunk': 'svn://svn-mirror.golo.chromium. org/native_client/trunk', 'sourceforge_url': 'svn://svn-mirror.golo.chromium.org /%(repo)s', 'webkit_trunk': 'svn://svn-mirror.golo.chromium.org/blink/trunk'}, ' deps_file': 'DEPS', 'managed': True, 'name': 'src', 'url': 'svn://svn-mirror.gol o.chromium.org/chrome/trunk/src'}]" 9 "cache_dir = None\nsolutions = [{'custom_vars': {'googlecode_url': 'svn:// svn-mirror.golo.chromium.org/%s', 'nacl_trunk': 'svn://svn-mirror.golo.chromium. org/native_client/trunk', 'sourceforge_url': 'svn://svn-mirror.golo.chromium.org /%(repo)s', 'webkit_trunk': 'svn://svn-mirror.golo.chromium.org/blink/trunk'}, ' deps_file': 'DEPS', 'managed': True, 'name': 'src', 'url': 'svn://svn-mirror.gol o.chromium.org/chrome/trunk/src'}]"
10 ], 10 ],
11 "name": "gclient setup" 11 "name": "gclient setup"
12 }, 12 },
13 { 13 {
14 "abort_on_failure": true, 14 "abort_on_failure": true,
15 "cmd": [ 15 "cmd": [
16 "python", 16 "python",
17 "-u", 17 "-u",
18 "[BUILD]/scripts/slave/gclient_safe_revert.py",
19 ".",
20 "[DEPOT_TOOLS]/gclient"
21 ],
22 "name": "gclient revert"
23 },
24 {
25 "abort_on_failure": true,
26 "cmd": [
27 "python",
28 "-u",
18 "[DEPOT_TOOLS]/gclient.py", 29 "[DEPOT_TOOLS]/gclient.py",
19 "sync", 30 "sync",
20 "--nohooks", 31 "--nohooks",
21 "--delete_unversioned_trees", 32 "--delete_unversioned_trees",
22 "--force", 33 "--force",
23 "--output-json", 34 "--output-json",
24 "/path/to/tmp/json" 35 "/path/to/tmp/json"
25 ], 36 ],
26 "name": "gclient sync", 37 "name": "gclient sync",
27 "~followup_annotations": [ 38 "~followup_annotations": [
(...skipping 23 matching lines...) Expand all
51 "@@@SET_BUILD_PROPERTY@got_nacl_revision@274981@@@", 62 "@@@SET_BUILD_PROPERTY@got_nacl_revision@274981@@@",
52 "@@@SET_BUILD_PROPERTY@got_webkit_revision@124383@@@", 63 "@@@SET_BUILD_PROPERTY@got_webkit_revision@124383@@@",
53 "@@@SET_BUILD_PROPERTY@got_swarming_client_revision@276089@@@", 64 "@@@SET_BUILD_PROPERTY@got_swarming_client_revision@276089@@@",
54 "@@@SET_BUILD_PROPERTY@got_webrtc_revision@120644@@@", 65 "@@@SET_BUILD_PROPERTY@got_webrtc_revision@120644@@@",
55 "@@@SET_BUILD_PROPERTY@got_revision@170242@@@", 66 "@@@SET_BUILD_PROPERTY@got_revision@170242@@@",
56 "@@@SET_BUILD_PROPERTY@got_swarm_client_revision@200767@@@" 67 "@@@SET_BUILD_PROPERTY@got_swarm_client_revision@200767@@@"
57 ] 68 ]
58 }, 69 },
59 { 70 {
60 "cmd": [ 71 "cmd": [
61 "[SLAVE_BUILD]/src/tools/telemetry/build/generate_telemetry_harness.sh",
62 "[TMP_BASE]/telemetry-harness_tmp_1/telemetry-170242.zip"
63 ],
64 "name": "create harness archive"
65 },
66 {
67 "cmd": [
68 "python", 72 "python",
69 "-u", 73 "-u",
70 "[DEPOT_TOOLS]/third_party/gsutil/gsutil", 74 "[DEPOT_TOOLS]/gclient.py",
71 "cp", 75 "runhooks"
72 "[TMP_BASE]/telemetry-harness_tmp_1/telemetry-170242.zip",
73 "gs://chromium-telemetry/snapshots/telemetry-170242.zip"
74 ], 76 ],
75 "name": "gsutil upload", 77 "env": {
76 "~followup_annotations": [ 78 "GYP_CHROMIUM_NO_ACTION": "1"
77 "@@@STEP_LINK@gsutil.upload@https://storage.cloud.google.com/chromium-tele metry/snapshots/telemetry-170242.zip@@@" 79 },
78 ] 80 "name": "gclient runhooks"
79 }, 81 },
80 { 82 {
81 "cmd": [ 83 "cmd": [
82 "python", 84 "python",
83 "-u", 85 "-u",
84 "\nimport shutil, sys\nshutil.rmtree(sys.argv[1])\n", 86 "[DEPOT_TOOLS]/gn.py",
85 "[TMP_BASE]/telemetry-harness_tmp_1" 87 "--root=[SLAVE_BUILD]/src",
88 "gen",
89 "//out/Debug",
90 "--args=is_debug=true"
86 ], 91 ],
87 "name": "rmtree remove harness temp directory", 92 "name": "gn"
88 "~followup_annotations": [ 93 },
89 "@@@STEP_LOG_LINE@python.inline@@@@", 94 {
90 "@@@STEP_LOG_LINE@python.inline@import shutil, sys@@@", 95 "cmd": [
91 "@@@STEP_LOG_LINE@python.inline@shutil.rmtree(sys.argv[1])@@@", 96 "[DEPOT_TOOLS]/ninja",
92 "@@@STEP_LOG_END@python.inline@@@" 97 "-C",
93 ] 98 "[SLAVE_BUILD]/src/out/Debug"
99 ],
100 "name": "compile"
94 } 101 }
95 ] 102 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698