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

Side by Side Diff: DEPS

Issue 405653004: add ACL-setting code to upload_rendered_skps.py (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: created local gs_utils wrapper module 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
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@ac762a93094a8a45e2793820ababd280766eef2a", 29 Var("skia_git") + "/common.git@2e2cd80631489a47b24ac0747922b837fc0c81ef",
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "third_party/chromium_buildbot/third_party/gsutil": 76 "third_party/chromium_buildbot/third_party/gsutil":
77 Var("chromium_git") + "/external/gsutil/src.git@b41305d0b538bae46777e1d9562e cec0149f8d44", 77 Var("chromium_git") + "/external/gsutil/src.git@b41305d0b538bae46777e1d9562e cec0149f8d44",
78 "third_party/chromium_buildbot/third_party/gsutil/boto": 78 "third_party/chromium_buildbot/third_party/gsutil/boto":
79 Var("chromium_git") + "/external/boto.git@98fc59a5896f4ea990a4d527548204fed8 f06c64", 79 Var("chromium_git") + "/external/boto.git@98fc59a5896f4ea990a4d527548204fed8 f06c64",
80 } 80 }
81 81
82 recursedeps = [ 82 recursedeps = [
83 "common", 83 "common",
84 ] 84 ]
85 85
OLDNEW
« no previous file with comments | « no previous file | slave/skia_slave_scripts/build_step.py » ('j') | slave/skia_slave_scripts/utils/gs_utils.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698