OLD | NEW |
---|---|
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", | |
19 "skia_git": "https://skia.googlesource.com", | 18 "skia_git": "https://skia.googlesource.com", |
20 "telemetry_chromium_revision": "286171", | 19 "telemetry_chromium_revision": "286171", |
21 "webpagereplay_revision": "546", | 20 "webpagereplay_revision": "546", |
22 "telemetry_webkit_trunk": "http://src.chromium.org/blink/trunk", | 21 "telemetry_webkit_trunk": "http://src.chromium.org/blink/trunk", |
23 "telemetry_webkit_revision": "179099" | 22 "telemetry_webkit_revision": "179099" |
24 } | 23 } |
25 | 24 |
26 deps = { | 25 deps = { |
27 # Utilities shared between the Skia and Skia-Buildbot repositories. | 26 # Utilities shared between the Skia and Skia-Buildbot repositories. |
28 "common": | 27 "common": |
(...skipping 17 matching lines...) Expand all Loading... | |
46 "third_party/chromium_trunk/src/third_party/webpagereplay": | 45 "third_party/chromium_trunk/src/third_party/webpagereplay": |
47 "http://web-page-replay.googlecode.com/svn/trunk/@" + Var("webpagereplay_rev ision"), | 46 "http://web-page-replay.googlecode.com/svn/trunk/@" + Var("webpagereplay_rev ision"), |
48 | 47 |
49 # build/android/pylib/android_commands.py requires android_testrunner to be in third_party. | 48 # build/android/pylib/android_commands.py requires android_testrunner to be in third_party. |
50 "third_party/chromium_trunk/src/third_party/android_testrunner": | 49 "third_party/chromium_trunk/src/third_party/android_testrunner": |
51 Var("chromium_trunk") + "/src/third_party/android_testrunner@" + Var("chromi um_revision"), | 50 Var("chromium_trunk") + "/src/third_party/android_testrunner@" + Var("chromi um_revision"), |
52 | 51 |
53 # chrome_remote_control/replay_server.py requires webpagereplay to be in src/t hird_party. | 52 # chrome_remote_control/replay_server.py requires webpagereplay to be in src/t hird_party. |
54 "third_party/src/third_party/webpagereplay": | 53 "third_party/src/third_party/webpagereplay": |
55 "http://web-page-replay.googlecode.com/svn/trunk/@" + Var("webpagereplay_rev ision"), | 54 "http://web-page-replay.googlecode.com/svn/trunk/@" + Var("webpagereplay_rev ision"), |
56 | |
borenet
2014/10/13 20:56:16
I think that no other code uses these DEPS...
| |
57 # Chromium buildbot code, pinned at an old revision for compatibility with our | |
58 # buildbot code. | |
59 "third_party/chromium_buildbot": | |
60 Var("chromium_trunk") + "/tools/build@" + Var("chromium_revision"), | |
61 "third_party/chromium_buildbot/scripts/command_wrapper/bin": | |
62 Var("chromium_git") + "/chromium/tools/command_wrapper/bin.git@2eeebba9a512c ae9e4e9312f5ec728dbdad80bd0", | |
63 "third_party/depot_tools": | |
64 Var("chromium_git") + "/chromium/tools/depot_tools.git", | |
65 | |
66 # Tip-of-tree Chromium buildbot code. | |
67 "third_party/chromium_buildbot_tot": | |
68 Var("chromium_git") + "/chromium/tools/build.git", | |
69 | |
70 # Dependencies of the Chromium buildbot code. | |
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. | |
73 # | |
74 # TODO(borenet): Maybe use recursedeps for these? But hopefully we'll be | |
75 # completely upstreamed soon anyway, and we won't need to bother. | |
76 "third_party/chromium_buildbot/third_party/gsutil": | |
77 Var("chromium_git") + "/external/gsutil/src.git@b41305d0b538bae46777e1d9562e cec0149f8d44", | |
78 "third_party/chromium_buildbot/third_party/gsutil/boto": | |
79 Var("chromium_git") + "/external/boto.git@98fc59a5896f4ea990a4d527548204fed8 f06c64", | |
80 } | 55 } |
81 | 56 |
82 recursedeps = [ | 57 recursedeps = [ |
83 "common", | 58 "common", |
84 ] | 59 ] |
85 | 60 |
OLD | NEW |