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

Side by Side Diff: DEPS

Issue 344183004: Use new common utils where possible. (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: rebase Created 6 years, 5 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
« no previous file with comments | « no previous file | slave/skia_slave_scripts/android_verify_device.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # This DEPS file checks out a read-only copy of the Chromium buildbot code at 1 # This DEPS file checks out a read-only copy of the Chromium buildbot code at
2 # a revision that is known to work with the current Skia buildbot setup. 2 # a revision that is known to work with the current Skia buildbot setup.
3 # 3 #
4 # Thus, this DEPS file is useful for: 4 # Thus, this DEPS file is useful for:
5 # - users who just want to run, not modify, the Skia buildbot 5 # - users who just want to run, not modify, the Skia buildbot
6 # - developers who wish to make changes to the Skia buildbot config but NOT 6 # - developers who wish to make changes to the Skia buildbot config but NOT
7 # the underlying Chromium buildbot code 7 # the underlying Chromium buildbot code
8 # 8 #
9 # To check out the Skia buildbot code using this DEPS file, run: 9 # To check out the Skia buildbot code using this DEPS file, run:
10 # gclient config https://skia.googlesource.com/buildbot.git 10 # gclient config https://skia.googlesource.com/buildbot.git
11 # gclient sync 11 # gclient sync
12 12
13 use_relative_paths = True 13 use_relative_paths = True
14 14
15 vars = { 15 vars = {
16 "chromium_trunk": "http://src.chromium.org/svn/trunk", 16 "chromium_trunk": "http://src.chromium.org/svn/trunk",
17 "chromium_revision": "179720", 17 "chromium_revision": "179720",
18 "chromium_git": "https://chromium.googlesource.com", 18 "chromium_git": "https://chromium.googlesource.com",
19 "skia_git": "https://skia.googlesource.com", 19 "skia_git": "https://skia.googlesource.com",
20 "telemetry_chromium_revision": "278114", 20 "telemetry_chromium_revision": "278114",
21 "webpagereplay_revision": "546", 21 "webpagereplay_revision": "546",
22 "telemetry_webkit_trunk": "http://src.chromium.org/blink/trunk", 22 "telemetry_webkit_trunk": "http://src.chromium.org/blink/trunk",
23 "telemetry_webkit_revision": "176408" 23 "telemetry_webkit_revision": "176408"
24 } 24 }
25 25
26 deps = { 26 deps = {
27 # Utilities shared between the Skia and Skia-Buildbot repositories. 27 # Utilities shared between the Skia and Skia-Buildbot repositories.
28 "common": 28 "common":
29 Var("skia_git") + "/common.git@9bda9ca2f55b584189b83457d1cfea7805713f64", 29 Var("skia_git") + "/common.git@c92e6d8058240b0804b28fdc4f78261b7133431d",
30 30
31 # Chromium trunk code for running telemetry binaries. 31 # Chromium trunk code for running telemetry binaries.
32 "third_party/chromium_trunk/src/tools/perf": 32 "third_party/chromium_trunk/src/tools/perf":
33 Var("chromium_trunk") + "/src/tools/perf@" + Var("telemetry_chromium_revisio n"), 33 Var("chromium_trunk") + "/src/tools/perf@" + Var("telemetry_chromium_revisio n"),
34 "third_party/chromium_trunk/src/tools/telemetry": 34 "third_party/chromium_trunk/src/tools/telemetry":
35 Var("chromium_trunk") + "/src/tools/telemetry@" + Var("telemetry_chromium_re vision"), 35 Var("chromium_trunk") + "/src/tools/telemetry@" + Var("telemetry_chromium_re vision"),
36 "third_party/chromium_trunk/src/build/android/pylib": 36 "third_party/chromium_trunk/src/build/android/pylib":
37 Var("chromium_trunk") + "/src/build/android/pylib@" + Var("telemetry_chromiu m_revision"), 37 Var("chromium_trunk") + "/src/build/android/pylib@" + Var("telemetry_chromiu m_revision"),
38 "third_party/chromium_trunk/src/tools/crx_id": 38 "third_party/chromium_trunk/src/tools/crx_id":
39 Var("chromium_trunk") + "/src/tools/crx_id@" + Var("telemetry_chromium_revis ion"), 39 Var("chromium_trunk") + "/src/tools/crx_id@" + Var("telemetry_chromium_revis ion"),
(...skipping 29 matching lines...) Expand all
69 69
70 # Dependencies of the Chromium buildbot code. 70 # Dependencies of the Chromium buildbot code.
71 # I tried to use From() to link to Chromium's /tools/build/DEPS dependencies, 71 # I tried to use From() to link to Chromium's /tools/build/DEPS dependencies,
72 # but I couldn't get it to work... so I have hard-coded these dependencies. 72 # but I couldn't get it to work... so I have hard-coded these dependencies.
73 "third_party/chromium_buildbot/third_party/gsutil": 73 "third_party/chromium_buildbot/third_party/gsutil":
74 Var("chromium_git") + "/external/gsutil/src.git@b41305d0b538bae46777e1d9562e cec0149f8d44", 74 Var("chromium_git") + "/external/gsutil/src.git@b41305d0b538bae46777e1d9562e cec0149f8d44",
75 "third_party/chromium_buildbot/third_party/gsutil/boto": 75 "third_party/chromium_buildbot/third_party/gsutil/boto":
76 Var("chromium_git") + "/external/boto.git@98fc59a5896f4ea990a4d527548204fed8 f06c64", 76 Var("chromium_git") + "/external/boto.git@98fc59a5896f4ea990a4d527548204fed8 f06c64",
77 } 77 }
78 78
OLDNEW
« no previous file with comments | « no previous file | slave/skia_slave_scripts/android_verify_device.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698